Organisation profile: Speech Research Lab (SRL), duPont Hospital for Children
[ ID = 0951 ] | Speech Research Lab (SRL), duPont Hospital for Children |
Organisation name | Speech Research Lab (SRL), duPont Hospital for Children |
Short name or acronym | Speech Research Lab (SRL), duPont Hospital for Children |
Organisation type | Laboratory |
Activity type | Speech research |
Address | Alfred I. duPont Hospital for Children, P.O. Box 269 |
Postal Code | 19899 |
City | Wilmington, DE |
Country | United States |
Phone | + +1 302 651 6835 |
Fax | + +1 302 651 6895 |
Email | bunnell_(on)_asel.udel.edu |
Organisation URL | http://www.asel.udel.edu/speech/research.html |
Logo | Description |
 |
The Speech Research Lab conducts basic and applied
research in the areas of Speech Science and Speech Technology. We seek
to apply our research to address the needs of users, especially
children, in the AAC community. To that end, we are developing natural
sounding software speech synthesis and doing research on speech
processing and speech recognition for persons with disabilities.
|
| Contact |
Name | Dr. H. Timothy Bunnell |
Function | Laboratory Head |
Department | Research |
Email | bunnell_(on)_asel.udel.edu |
Phone | + +1 302 651 6835 |
Fax | + +1 302 651 6895 |
Update this profile
|
Last update: 2002-04-15 02:52: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"
|
|