elsnet |
Expert profile: Dr Allan South |
[ ID = 1636 ] | Dr Allan South |
---|---|
Name | South, Dr Allan |
Job Title | Speech Technology Specialist |
Organisation | |
Address | 24 Red Earl Lane |
Postal Code | WR142ST |
City | Malvern |
Country | United Kingdom |
Phone | + +44 (0) 1684 563 495 |
Fax | + |
Mobile | + |
Allan.South_(on)_btinternet.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | http://www.Allan.South.btinternet.co.uk |
Membership | ISCA MIEE |
Languages | English |
Specialism | Acoustic Phonetics
Analysis & Processing of Speech under Stress Audio Signal Processing Communication Corpora Corpora and Dialogue Annotations Databases of Emotional Speech Development and Implementation of Speech Technology Applications Emotion in Speech Evaluation Experimental Phonetics Filter Design Hidden Markov Models Interactive Voice Response (IVR) Lie-detection Low Bit Rate Coding Noise Effects Recognition Technologies Recognition Tuning Recording Robust Speech Recognition Speech Acoustics Speech Analysis Speech Applications Speech Databases Speech Databases for Automatic Speech/Speaker Recognition Speech Production Speech Recognition Speech Technologies Syntax Vocal-tract modelling Voice Recording |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2004-03-28 19:31:19 #!/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" |