|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4350 ] | Vocapia |
---|---|
Organisation name | Vocapia Research |
Short name or acronym | Vocapia |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | 3 rue Jean Rostand |
Postal Code | 91400 |
City | Orsay |
Country | France |
Phone | + |
Fax | + |
contact_(on)_vocapia.com | |
Organisation URL | http://www.vocapia.com |
Logo | Description |
![]() |
Vocapia Research, is a high tech research and development company (R&D), developing technologies for multilingual, unconstrained speech-to-text transcription systems, automatic segmentation of audio data, as well as language and speaker recognition. Vocapia Research has developed speech recognition engines for conversational speech and broadcast data in multiple languages. This core technology serves as the basis for a range of applications from interactive conversational systems to the automatic indexing of audio data. |
Contact | |
Name | M. Bernard Prouts |
Function | CEO |
Department | |
contact_(on)_vocapia.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2012-01-24 18:26:12 #!/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" |