|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1143 ] | Ralf Benzmüller |
---|---|
Name | Benzmüller, Ralf |
Job Title | Project manager |
Organisation | G DATA Software AG |
Address | Königsallee 178b |
Postal Code | 44793 |
City | Bochum |
Country | Germany |
Phone | + +49 234 9762 254 |
Fax | + +49 234 9762 298 |
Mobile | + |
ralf.benzmueller_(on)_gdata.de [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English deutsch, francais |
Specialism | Speechtechnology:
Acoustic Phonetics Annotation and Exploitation Tools Application Software Development Audio Signal Processing Automated Natural Language Speech Communication Computational Lexicography Computational Linguistics Computational Morphology Corpora and Dialogue Annotations Corpus statistics Data Corpus Collection Databases of Emotional Speech Developer Tools Dialogue Dialogue Modelling Digital Speech Processing Discourse analysis Discourse Theories Emotion in Speech Evaluation Experimental Phonetics financial application fundamental frequency estimation general linguistics Intonation Large speech corpora Lexicons Linguistics Mobile devices Morphological Analysis and Synthesis (Generation) Neural Networks NLP Noise Reduction Objective Speech Quality Objective speech quality measures Phonetics Phonology Pragmatics Pronunciation Modelling Prosodic Studies in Spontaneous Language Analysis Prosody Prosody (Linguistic Description of) Prosody and songs Prosody modelling Prosody perception Semantics Signal Analysis Signal Processing software in E Commerce Speech Databases Speech Production speech quality measurement Speech Signal Processing Speech Synthesis Speech Technologies Spontaneous Speech Statistical Language Modeling and Analysis Syntax Text to Speech in Telephony Text-to-Phonetic Representation Text-to-Speech Text-to-speech (Indic) Text-To-Speech Conversion VoiceXML Web Applications Wireless Communications Applications Wordnets |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2003-08-11 14:00:18 #!/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" |