|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3068 ] | SPUoA |
---|---|
Organisation name | Speech Group, University of Athens |
Short name or acronym | SPUoA |
Organisation type | Speech Technology |
Activity type | Speech Technology |
Address | Department of Informatics, Panepistimiopolis, Ilisia |
Postal Code | GR 15784 |
City | Athens |
Country | Greece |
Phone | + +30 2107275305 |
Fax | + +30 2106018677 |
koupe_(on)_di.uoa.gr | |
Organisation URL | http://www.di.uoa.gr/speech/ |
Logo | Description |
![]() |
The work of the Speech Group focuses on the area of Speech Communication, as a part of the major domains of Speech & Voice Technologies and Human-Computer Interaction, with activities in: · Speech analysis, synthesis and recognition · Computer Mediated Interpersonal Communication and Communication Aids · Speech Technology Design and Development in Human-Computer Interaction · Interactive Voice Technologies · Information Technologies for Interactive Learning · Accessible Services and Systems for Disabled and Elderly People |
Contact | |
Name | Professor Georgios Kouroupetroglou |
Function | Head of the Group |
Department | Department of Informatics and Telecommunications |
koupe_(on)_di.uoa.gr | |
Phone | + +30 2107275305 |
Fax | + +30 2106018677 |
![]() |
Last update: 2004-05-16 06:32:40 #!/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" |