|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0608 ] | Dr Bernard PROUTS |
---|---|
Name | PROUTS, Dr Bernard |
Job Title | Speech processing manager |
Organisation | VECSYS |
Address | 3, rue de la Terre de Feu - ZA de Courtaboeuf |
Postal Code | 91952 |
City | Les Ulis |
Country | France |
Phone | + 33 (0) 1 69 29 87 87 |
Fax | + 33 (0) 1 69 07 58 58 |
Mobile | + |
bprouts_(on)_vecsys.fr [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English French |
Specialism | Speechtechnology:
Audio Indexing Audiovisual Speech Processing Automated Natural Language Speech Automatic transcription of TV and radio broadcast News Automotive Applications Corpora and Dialogue Annotations Data Corpus Collection dialogue systems Digital Speech Processing Dynamic Programming in Speech Recognition Hidden Markov Models Human Voice Understanding Information Retrieval Information Services by Telephone using Speech Technologies Language Identification Large speech corpora Multimodal Human-Machine Communication Oral Dialogue Robust Speech Recognition Speaker Recognition Speech Processing Speech Recognition Speech Retrieval Speech Synthesis Speech Technologies Speech-Enabled IVR Systems Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Systems Spoken Document Retrieval Spoken Language Resources and Evaluation Spontaneous Speech Statistical Language Modeling and Analysis |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-28 15:33:26 #!/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" |