|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2952 ] | Vocalibur Language & Speech Technology B.V. |
---|---|
Organisation name | Vocalibur Language & Speech Technology B.V. |
Short name or acronym | Vocalibur Language & Speech Technology B.V. |
Organisation type | Company |
Activity type | Speech technology |
Address | Wibautstraat 3 |
Postal Code | 1091 GH |
City | Amsterdam |
Country | Netherlands |
Phone | + +31-20-5961890 |
Fax | + +31-20-5961823 |
info_(on)_vocalibur.com | |
Organisation URL | http://www.vocalibur.com |
Logo | Description |
![]() |
Vocalibur is specialised in speech technology. Besides knowledge about the fundamentals of all technologies in this field (ASR, TTS, Speaker Recognition), we also have hands-on experience in applying these technologies in speech driven automatic information services. It is our goal to assist you in creating such services. By implementing speech technology into your systems, you can guarantee your customers 24-7 availability, while costs are reduced or extra revenue streams are generated. Speech technology also opens the door to new services without having to implement a complete call-centre. Existing touch-tone services can be replaced by speech enabled dialog systems. Whilst the dialog system handles basic routine activities, call-centre agents only have to answer questions requiring human intelligence. Vocalibur focuses on voice application design. The starting point of all speech technology applications is the dialog, since it models the man-machine interaction interface. A well-designed dialog will supply the customer with the desired information as fast as possible. |
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" |