|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1570 ] | The Centre for Speech Technology Research |
---|---|
Organisation name | The Centre for Speech Technology Research |
Short name or acronym | The Centre for Speech Technology Research |
Organisation type | Center |
Activity type | Speech technology |
Address | 2 Buccleuch Place |
Postal Code | EH8 9LW |
City | Edinburgh, UK |
Country | United Kingdom |
Phone | + +44 131 650 2804 |
Fax | + +44 131 650 4587 |
webmaster_(on)_cstr.ed.ac.uk | |
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 goalsCSTR has developed several large scale software systems, including the Festival speech synthesis system and the Edinburgh speech tools. CSTR has excellent facilities for recording, storing and processing large volumes of speech. It has access to a range of speech analysis and display software, developed both in house and elsewhere. It also has access to large speech databases, some of which were recorded in house. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
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" |