|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0266 ] | Philips Speech Processing |
---|---|
Organisation name | Philips Speech Processing |
Short name or acronym | Philips Speech Processing |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | Computerstraße 6 |
Postal Code | A-1101 |
City | Vienna |
Country | Austria |
Phone | + +43 1 60101 1124 |
Fax | + +43 1 603 2540 |
psp.sales_(on)_psp-atl.be.philips.com | |
Organisation URL | http://www.speech.be.philips.com |
Logo | Description |
![]() |
Philips Speech Processing is a pioneer and one of the global market leaders in speech recognition, natural dialogue and language understanding technologies. A developer of voice enabled telephony applications, Philips has a large installed base of speech recognition and natural dialogue systems in Europe and is a major speech technology provider in North America. Philips' speech technology product portfolio includes the host-based speech recognition engine SpeechPearl®, the natural dialog platform SpeechMania®, SpeechWave for speech recognition in embedded system architectures, as well as the Voice ReQuest auto attendant application. Philips' speech technology is used for a large variety of applications, such as directory assistance, customer care, banking, travel, auto attendants, speech portals, and white and yellow pages automation. |
Contact | |
Name | |
Function | |
Department | |
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" |