|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0952 ] | Dr Jean-Paul LEFEVRE |
---|---|
Name | LEFEVRE, Dr Jean-Paul |
Job Title | Managing Director |
Organisation | ARCHES |
Address | Allée de la Veissière, 7 |
Postal Code | 38640 |
City | Claix |
Country | France |
Phone | + +33/608987372 |
Fax | + +33/476998983 |
Mobile | + |
jplefevre_(on)_compuserve.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ISCA IEEE |
Languages | English French |
Specialism | Speechtechnology:
Background Noise Suppression Forensic Phonetics Hearing Impairment Low Bit Rate Coding Measurement of Quality of Service in Speech Systems Multilinguality Noise Reduction Objective Speech Quality Objective speech quality measures Signal Processing Source and Channel Coding Speech Coding Speech Evaluation speech intelligibility measurement Text-to-Speech Very low bit rate coding |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-04-09 15:35:16 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |