|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0816 ] | Dr Samir CHENNOUKH |
---|---|
Name | CHENNOUKH, Dr Samir |
Job Title | Senior Scientist |
Organisation | Skyworks solution Inc. |
Address | Technoparc, circuit des 24 heures, |
Postal Code | 72100 |
City | Le Mans |
Country | France |
Phone | + +33 2 43395706 |
Fax | + +33 2 43391251 |
Mobile | + |
Samir.Chennoukh_(on)_skyworksinc.com [@ replaced for spam protection] | |
Organisation URL | http://www.skyworksinc.com |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Audio Signal Processing Communication Digital Speech Processing fundamental frequency estimation Hidden Markov Models Human Factors Investment in Speech Processing Knowledge-based Speech Recognition Low Bit Rate Coding Nuance into Telephony Objective Speech Quality Objective speech quality measures Phonology Pronunciation Modelling Provision and integration of voice verification using phones and internet Psychoacoustics Robust Speech Recognition Signal Analysis Signal Processing Source and Channel Coding Speaker Adaptation Speaker identification Speaker Recognition Speech Acoustics Speech Analysis Speech Applications Speech Coding Speech Enhancement speech intelligibility measurement Speech Perception Speech Processing Speech Production speech quality measurement Speech Recognition Speech Retrieval Speech Summarization Speech Synthesis Speech Technologies Very low bit rate coding vocal-tract modelling Voice Activity Detection Voice Identification Voice Processing Voice-Driven Telecommunications Applications VoiceXML VoIP Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2003-09-09 18:51:36 #!/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" |