|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1175 ] | AT&T Natural Voices Text to Speech |
---|---|
Organisation name | AT&T Natural Voices Text to Speech |
Short name or acronym | AT&T Natural Voices Text to Speech |
Organisation type | Company |
Activity type | Speech technology |
Address | |
Postal Code | |
City | |
Country | United States |
Phone | + |
Fax | + |
feedback_(on)_naturalvoices.att.com | |
Organisation URL | http://www.naturalvoices.att.com/ |
Logo | Description |
![]() |
AT&T Natural Voices: Always Innovating From the first synthesized speech system in 1939 to today, AT&T has long been the world's speech technology pioneer, introducing the highest quality and most robust speech systems available anywhere. We're putting this expertise to work for businesses worldwide by integrating technologies, such as AT&T Natural Voices' Text-to-Speech (TTS) Engine - the most realistic, human-sounding synthetic speech system. |
Contact | |
Name | Mr. Todd Sweeney |
Function | |
Department | |
ttsweeney_(on)_att.com | |
Phone | + +1 608 259 2217 |
Fax | + +1 608 259 2205 |
![]() |
Last update: 2002-11-15 21:48:29 #!/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" |