Organisation profile: Speech Communication Lab (SCL), Boston University
[ ID = 0950 ] | Speech Communication Lab (SCL), Boston University |
Organisation name | Speech Communication Lab (SCL), Boston University |
Short name or acronym | Speech Communication Lab (SCL), Boston University |
Organisation type | Center |
Activity type | Speech technology |
Address | 8 Saint Mary's Street, Room 411 |
Postal Code | 02215 |
City | Boston, MA |
Country | United States |
Phone | + +1 617 353 9789 |
Fax | + +1 617 353 1282 |
Email | arindam_(on)_bu.edu |
Organisation URL | http://formant.bu.edu |
Logo | Description |
 |
Research in SCL combines engineering and speech science to
address issues in speech communication. One major effort is concerned
with the development of several components of a speech recognition
system based on phonetic features. In particular, there are projects
focusing on the signal representation, lexical access and the
development of a new paradigm for speech recognition. A second project
is focusing on the improvement in quality and intelligibility of
speech produced by users of artificial larynxes. A final project is
concerned with articulatory and acoustic modeling. Other research
interests involve speech synthesis and the development of tools for
speech enhancement.
|
| Contact |
Name | Professor Carol Y. Espy-Wilson |
Function | |
Department | |
Email | |
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"
|
|