[ ID = 3596 ] | Teleca |
Organisation name | Teleca Speech Technologies |
Short name or acronym | Teleca |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | Neumeyerstrasse 50 |
Postal Code | 90411 |
City | Nuremberg |
Country | Germany |
Phone | ++49 911 88190 4329 |
Fax | + |
Email | stefan.dobler_(on)_telecasystems.de |
Organisation URL | http://www.telecavoice.com |
Logo | Description |
 |
Teleca Speech Technologies is working of speech technology solutions for embedded devices such as e.g. mobile phones. The offer includes solutions for speech recognition, speech enhancement (acoustic echo compensation and noise reduction) and optimised speech / audio codec implementations.
|
| Contact |
Name | Dr. Stefan Dobler |
Function | Director Speech Technology Products |
Department | |
Email | stefan.dobler_(on)_telecasystems.de |
Phone | +49 911 88190 4320 |
Fax | + |
Update this profile
|
Last update: 2005-10-06 18:15:35
#!/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"
|