[ ID = 3790 ] | AhoLab |
Organisation name | Aholab signal processing group |
Short name or acronym | AhoLab |
Organisation type | University |
Activity type | Language or Speech Technology research |
Address | Alda. Urquijo s/n |
Postal Code | 48013 |
City | Bilbao |
Country | Spain |
Phone | +34 946017245 |
Fax | +34 946014259 |
Email | |
Organisation URL | http://aholab.ehu.es/ |
Logo | Description |
 |
We are a university research team and focus our research in the areas of Text to Speech Conversion and Biometry. The Aholab is formed by a multidisciplinary team made up primarily by telecom engineers and a linguist. The laboratory is one of the research labs of the Department of Electronics and Telecommunications (DET) in the Faculty of Engineering of Bilbao (ETSI).
|
| Contact |
Name | PhD Inmaculada Hernaez |
Function | Full professor |
Department | Electronics and Telecommunication |
Email | inma_(on)_bips.bi.ehu.es |
Phone | +34 946013969 |
Fax | +34 946014259 |
Update this profile
|
Last update: 2007-06-25 17:12:48
#!/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"
|