|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 1567 ] | Lawrence Livermore National Laboratory |
|---|---|
| Organisation name | Lawrence Livermore National Laboratory |
| Short name or acronym | Lawrence Livermore National Laboratory |
| Organisation type | Specialty society |
| Activity type | Speech technology |
| Address | East Ave. |
| Postal Code | 7000 |
| City | Livermore, CA |
| Country | United States |
| Phone | + +1 94550 9234 |
| Fax | + |
| Organisation URL | http://speech.llnl.gov/ |
| Logo | Description |
![]() |
+ Speech Recognition and Coding
- Onset, pause, end-of-speech, and noise rejection
- Articulator descriptions directly or via transfer functions
- Low bandwidth, high fidelity, low power vocoding
Speaker Validation
- Highly accurate timing, articulator motions, and transfer functions
- Noninvasive, fast, virtually impossible to fake
Personalized Speech Synthesis
- Using excitation and transfer functions from any person
- Straightforward intonation and prosody implementation
Speech Research, Disability Analysis and Correction, Teaching, and
Other Applications
- Disabilities: Non invasive surveying, specific ariticulator
targeting, timing, pitch feedback, etc.
- Teaching and Correction: association of transfer functions with
articulator positions, timing and intonation analysis
|
| Contact | |
| Name | Mr. John F. Holzrichter PhD |
| Function | technical |
| Department | |
| holzrichter1_(on)_llnl.gov | |
| Phone | + +1 925 423 7454 |
| Fax | + +1 925 424 4820 |
|
|
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" |