|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 0869 ] | Institut de la Communication Parlée, ICP | 
|---|---|
| Organisation name | Institut de la Communication Parlée, ICP | 
| Short name or acronym | Institut de la Communication Parlée, ICP | 
| Organisation type | Association | 
| Activity type | Speech technology | 
| Address | 46 Avenue Félix Viallet | 
| Postal Code | 38031 | 
| City | Grenoble, Cedex 1 | 
| Country | France | 
| Phone | + +33 4 76 57 4533 | 
| Fax | + +33 4 76 57 4533 | 
| nom_(on)_icp.inpg.fr | |
| Organisation URL | http://www.icp.inpg.fr/ICP_old/index.en.html | 
| Logo | Description | 
![]()  | 
The Institute of Speech Communication ("Institut de la
Communication Parlée", ICP) directs its research efforts towards both
Engineering and Human Sciences. The ICP includes a hundred researchers
working in the field of speech communication, addressing
simultaneously fundamental aspects concerning the modeling of human
intelligence such as speech production and perception, man-machine
communication, phonetics and linguistics, as well as supporting
technologies such as synthesis of speaking faces, automatic speech
recognition and multi modal man-machine interfaces.
 | 
| Contact | |
| Name | Mr. Pierre Escudier | 
| Function | |
| Department | Director | 
| escudier_(on)_icp.inpg.fr | |
| Phone | + | 
| Fax | + | 
| 
 
 | 
Last update: 2002-04-10 12:32:58 #!/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" |