|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2727 ] | VECSYS |
---|---|
Organisation name | VECSYS |
Short name or acronym | VECSYS |
Organisation type | Company |
Activity type | Speech technology |
Address | 3, rue de la Terre de Feu |
Postal Code | 91570 |
City | Les Ulis |
Country | France |
Phone | + +33 (0) 1 69 29 87 87 |
Fax | + +33 (0) 1 69 07 58 58 |
vecsys_(on)_vecsys.fr | |
Organisation URL | http://www.vecsys.fr |
Logo | Description |
![]() |
VECSYS was founded in 1979, and from the beginning VECSYS has had a very close cooperation in the speech processing domain with the LIMSI-CNRS. With more than 20 years' experience, VECSYS designs, develops and markets systems and products in the full range of speech technologies, with the primary emphasis on speech recognition and speech synthesis. VECSYS develops innovative man-machine interfaces. The Automatic Vocal Server OPENVOX proposed by VECSYS integrates natural language processing and understanding, providing clients/callers with easy and immediate access to information. The MEDIASPEECH system proposed by VECSYS is designed for transcribing broadcast news for audio indexing. |
Member of elsnet | Contact |
Name | Dr Bernard PROUTS |
Function | Speech Processing Manager |
Department | Speech Processing |
bprouts_(on)_vecsys.fr | |
Phone | + +33 1 69 29 87 87 |
Fax | + +33 1 69 07 58 58 |
![]() |
Last update: 2002-05-27 20:37:34 #!/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" |