Organisation profile: Institute of Phonetics, Faculty of Arts, Charles University
[ ID = 1046 ] | Institute of Phonetics, Faculty of Arts, Charles University |
Organisation name | Institute of Phonetics, Faculty of Arts, Charles University |
Short name or acronym | Institute of Phonetics, Faculty of Arts, Charles University |
Organisation type | Center |
Activity type | Speech technology |
Address | Náměstí Jana Palacha 2 |
Postal Code | 116 38 |
City | Prague |
Country | Czech Republic |
Phone | + +420 2 216 19 260 |
Fax | + +420 2 248 12 166 |
Email | dana.stiborova_(on)_ff.cuni.cz |
Organisation URL | http://www.ff.cuni.cz/departments/fu/ip-intro.html |
Logo | Description |
 |
The Institute`s range of interest is broad. Currently,
their effort concentrates mostly on automatic speech signal
processing, esp. Czech synthesis (covered by two grants, and also by
international projects, the former COST 233 - Prosodics of Synthetic
Speech, and its present follow-on, COST 258 - Naturalness of Synthetic
Speech). The research also goes on in phonetic and phonologic
variability of sound phenomena in speech communication.
|
| Contact |
Name | Prof. Zdena Palková |
Function | Head of Dept |
Department | General Phonetics and Phonology |
Email | zdena.palkova_(on)_ff.cuni.cz |
Phone | + +420 2 216 19 258 |
Fax | + |
Update this profile
|
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"
|
|