|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3262 ] | FOAP |
---|---|
Organisation name | Functions of Audiovisual Prosody |
Short name or acronym | FOAP |
Organisation type | University |
Activity type | Language or Speech Technology research |
Address | P.O. Box 90153 |
Postal Code | NL - 5000 LE |
City | Tilburg |
Country | Netherlands |
Phone | +31 0134662922 |
Fax | +31 0134663110 |
foap_(on)_uvt.nl | |
Organisation URL | http://foap.uvt.nl/ |
Logo | Description |
![]() |
The FOAP project is concerned with a functional approach to both verbal and visual prosody (called audiovisual prosody) in spoken conversations. It is intuitively clear that prosody plays an important role in daily life spoken interactions. In general, it provides utterances with extra information that is often not explicitly contained in the lexical and syntactic make-up of a sentence. Indeed, various studies of verbal prosody have shown that it can be used to mark information structure and turn-taking or add expressive power to the propositional content of an utterance. But while we have learned a lot about the pragmatics of verbal prosody, we still miss a good deal of real knowledge into how auditive cues combine with visual ones. |
Contact | |
Name | Dr Marc Swerts |
Function | Principal Researcher |
Department | Communication and Cognition |
m.g.j.swerts_(on)_uvt.nl | |
Phone | +31 0134662922 |
Fax | +31 0134663110 |
![]() |
Last update: 2007-03-07 14:42:13 #!/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" |