Organisation profile: Speech Research Lab, A.I. duPont Hospital for Children and the
University of Delaware
[ ID = 1902 ] | Speech Research Lab, A.I. duPont Hospital for Children and the
University of Delaware |
Organisation name | Speech Research Lab, A.I. duPont Hospital for Children and the University of Delaware |
Short name or acronym | Speech Research Lab, A.I. duPont Hospital for Children and the University of Delaware |
Organisation type | Center |
Activity type | Speech technology |
Address | 1600 Rockland Rd |
Postal Code | 19803 |
City | Wilmington, DE |
Country | United States |
Phone | + +1 302 651 6843 |
Fax | + +1 302 651 6895 |
Email | |
Organisation URL | http://www.asel.udel.edu/speech |
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 | Debra Yarrington |
Function | |
Department | Speech Research Laboratory Center for Applied Science and Engineering duPont Hospital for Children/University of Delaware |
Email | yarringt_(on)_asel.udel.edu |
Phone | + |
Fax | + |
Update this profile
|
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"
|
|