|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2873 ] | SAIL LABS Technology AG |
---|---|
Organisation name | SAIL LABS Technology AG |
Short name or acronym | SAIL LABS Technology AG |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | Mariannengasse 14 |
Postal Code | A-1090 |
City | Vienna |
Country | Austria |
Phone | +43 1-580950 |
Fax | +43 1-58095580 |
info4speech_(on)_sail-technology.com | |
Organisation URL | http://www.sail-technology.com |
Logo | Description |
![]() |
SAIL LABS Technology AG, one of the worlds leading innovators is the field of speech technology, headquartered in Vienna, Austria, develops software solutions which provide fully automated transcription, indexing and archiving of unstructured audio, video and text data, and thus allow purposeful information retrieval in real-time. The underlying technology, like automatic speech recognition, audio to text, automatic indexing, machine translation, automatic closed captioning and/or subtitling etc. is being developed in SAIL LABS in-house R & D Department and integrated in complete systems or available as single components. SAIL LABS cutting-edge technology has won several awards, amongst others the Austrian Mercur award for innovative excellence in 2002 for the Conversational System and in 2003 for the Communication Mining® Framework. |
Contact | |
Name | |
Function | |
Department | |
info4speech_(on)_sail-technology.com | |
Phone | +43 1-58095-303 |
Fax | +43 1-58095-580 |
![]() |
Last update: 2005-09-12 09:54:20 #!/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" |