|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0666 ] | Dr. Jean-Michel Le Roux |
---|---|
Name | Le Roux, Dr. Jean-Michel |
Job Title | Deputy Director of Research & Industry Parnerships |
Organisation | Supelec |
Address | Campus de Gif Plateau de Moulon 3, Rue Joliot-Curie |
Postal Code | 91192 |
City | Gif sur Yvette |
Country | France |
Phone | +33 1 69 85 12 55 |
Fax | +33 |
Mobile | +33 6 83 83 67 95 |
jmlrlmj_(on)_gmail.com [@ replaced for spam protection] | |
Organisation URL | http://www.supelec.fr |
Personal URL | http://www.jlcreateur.com |
Membership | IEEE |
Languages | English French |
Specialism | Speechtechnology:
Acoustic Modeling Adaptive Filters Adaptive Speech Recognition Audio Signal Processing Communication Data Corpus Collection Developer Tools Digital Speech Processing DSP Coding Filter Design Grammar Compilers Hidden Markov Models Human Factors Engineering Information Services by Telephone using Speech Technologies Knowledge-based Speech Recognition Large speech corpora Multilinguality Noise Effects Nuance into Telephony Objective Speech Quality Objective speech quality measures Robust Speech Recognition Signal Analysis Signal Processing Speech Analysis Speech Applications Speech Coding Speech Databases for Automatic Speech/Speaker Recognition Speech Processing Speech Recognition Speech Technologies Speech-Enabled IVR Systems Telephony Very low bit rate coding Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2009-01-18 19:35:03 #!/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" |