[ ID = 0923 ] | Institut für Kommunikationsakustik, Ruhr-Universität Bochum |
Organisation name | Institut für Kommunikationsakustik, Ruhr-Universität Bochum |
Short name or acronym | Institut für Kommunikationsakustik, Ruhr-Universität Bochum |
Organisation type | Center |
Activity type | Speech technology |
Address | Ruhr-Universität Bochum |
Postal Code | D-44780 |
City | Bochum |
Country | Germany |
Phone | + +49 234 322 2496 |
Fax | + +49 234 321 4165 |
Email | central_(on)_ika.ruhr-uni-bochum.de |
Organisation URL | http://www.ika.ruhr-uni-bochum.de/ |
Logo | Description |
 |
The project group is concerned with the computational
processing of acoustic speech signals. Since the signals are designed
for human beings, there is a wide variety of interdisciplinary
research activities in this area. From the information-technology
point of view it is worth mentioning that speech is the most common
medium for human communication. Also, considering the interaction of
man and the technical environment, there is an increasing interest and
a growing number of technological applications for speech in such
areas as man-machine communication. At present, the main focus of the
group is the generation and adaptation of speech signals for different
dialogue scenarious, i.e. generation of suitable "computer speech".
|
| Contact |
Name | Prof. Dr.-Ing. Dr. techn. h. c. Jens Blauert |
Function | Professors / Chairman of the Board of the European Acoustics Association |
Department | Department of Electrical Engineering and Information Technology |
Email | central_(on)_ika.ruhr-uni-bochum.de |
Phone | + |
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"
|