|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1059 ] | Forschungszentrum Telekommunikation Wien (ftw) |
---|---|
Organisation name | Forschungszentrum Telekommunikation Wien (ftw) |
Short name or acronym | Forschungszentrum Telekommunikation Wien (ftw) |
Organisation type | Research Center |
Activity type | Speech technology |
Address | Donau-City-Str.1 |
Postal Code | 1220 |
City | Wien |
Country | Austria |
Phone | + +43 1 505 28 30 27 |
Fax | + +43 1 505 2830-99 |
speech_(on)_ftw.at | |
Organisation URL | http://speech.ftw.at/ |
Logo | Description |
![]() |
Telecommunication Research Centre Vienna is active in speech data collections, spoken and multimodal dialog systems, pronunication modelling, restricted-domain text-to-speech synthesis, noise cancellation, spoken question answering. |
Contact | |
Name | DI Georg Niklfeld |
Function | speech processing project manager |
Department | speech & more |
speech_(on)_ftw.at | |
Phone | + +43 1 505 28 30 27 |
Fax | + +43 1 505 2830-99 |
![]() |
Last update: 2002-04-15 12:05:39 #!/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" |