|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0644 ] | PhD Slim Ouni |
---|---|
Name | Ouni, PhD Slim |
Job Title | Associate Professor |
Organisation | LORIA - University Nancy 2 |
Address | 615 rue du jardin botanique |
Postal Code | 54600 |
City | Villers-Les-Nancy |
Country | France |
Phone | + |
Fax | + |
Mobile | + |
slim_(on)_loria.fr [@ replaced for spam protection] | |
Organisation URL | http://parole.loria.fr |
Personal URL | |
Membership | ISCA IEEE member and IEEE SPS memeber |
Languages | English french, arabic |
Specialism | Arabic Natural Language Processing
Audiovisual Speech Processing Computer Assisted Language Learning Evaluation Experimental Phonetics Information Retrieval Language Acquisition Language Learning Multimodal Communciation Multimodal Human-Machine Communication Multimodality Para- and Extralinguistic Aspects of Speech Perceptual analysis of speech and gestures Phonetics Pronunciation Modelling Speech Applications Speech Disorders Speech intelligibility measurement Speech Perception Speech Processing Speech Production Speech Reading (Lipreading) Speech Signal Processing Speech Synthesis Speech Technologies Speech Training Aids for Deaf and Hearing Impaired Text-to-Speech Usability of Speech Applications Use of articulatory models for ASR User Interface Design Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2010-08-03 15:02:42 #!/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" |