|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1665 ] | Dr Marc Swerts |
---|---|
Name | Swerts, Dr Marc |
Job Title | Researcher |
Organisation | Tilburg University |
Address | P.O. Box 90153 |
Postal Code | NL - 5000 LE |
City | Tilburg |
Country | Netherlands |
Phone | + +31 13 4662922 |
Fax | + +31 13 4663110 |
Mobile | + |
m.g.j.swerts_(on)_uvt.nl [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | http://fdlwww.uvt.nl/~mswerts/ |
Membership | ISCA |
Languages | English |
Specialism | Audiovisual Speech Processing
Computational Linguistics Dialogue Modelling Discourse analysis Emotion in Speech Experimental Phonetics Hand Gestures and Speech Multimodality Oral Dialogue Para- and Extralinguistic Aspects of Speech Perceptual analysis of speech and gestures Phonetics Pragmatics Prosodic Studies in Spontaneous Language Analysis Prosody Spoken Dialogue Systems Spontaneous Speech |
Photograph | Description or CV |
![]() |
http://fdlwww.uvt.nl/~mswerts/ |
![]() |
Last update: 2003-11-21 23:32:43 #!/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" |