|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0941 ] | Centre for Speech Technology Research |
---|---|
Organisation name | Centre for Speech Technology Research |
Short name or acronym | Centre for Speech Technology Research |
Organisation type | Center |
Activity type | Speech technology |
Address | 80 South Bridge |
Postal Code | EH1 1HN |
City | Edinburgh |
Country | United Kingdom |
Phone | + +44 131 650 2804 |
Fax | + +44 131 650 6351 |
Organisation URL | http://www.cstr.ed.ac.uk |
Logo | Description |
![]() |
CSTR is a multidisciplinary research group that undertakes application-oriented speech research. Its main work is in the areas of speech synthesis and speech recognition. Its goals are both to do original research which can be published in the open literature, and to see the results of its work embodied in technologies that are of benefit to users. It is interested in collaborating with outside academic or industrial partners in pursuit of either or both of these goals. |
Contact | |
Name | Paul Taylor |
Function | Director |
Department | |
Paul.Taylor_(on)_ed.ac.uk | |
Phone | + +44 131 650 2793 |
Fax | + +44 131 650 6351 |
![]() |
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" |