[ ID = 0940 ] | BAS |
Organisation name | Bavarian Archive for Speech Signals |
Short name or acronym | BAS |
Organisation type | Non-Profit |
Activity type | Speech technology |
Address | c/o Institut für Phonetik, Universität München, Schellingstr.3 / II |
Postal Code | 80799 |
City | München |
Country | Germany |
Phone | + +49 89 2180 2758 |
Fax | + +49 89 2800 362 |
Email | bas_(on)_bas.uni-muenchen.de |
Organisation URL | http://www.bas.uni-muenchen.de/Bas/ |
Logo | Description |
 |
The Bavarian Archive for Speech Signals (BAS) is a public
institution hosted by the University of Munich. This institution was
founded with the aim of making corpora of current spoken German
available to both the basic research and the speech technology
communities via a maximally comprehensive digital speech-signal
database. The speech material will be structured in a manner allowing
flexible and precise access, with acoustic-phonetic and
linguistic-phonetic evaluation forming an integral part of it.
|
| Contact |
Name | PD Dr.-Ing. Florian Schiel |
Function | Director |
Department | |
Email | bas_(on)_bas.uni-muenchen.de |
Phone | + +49 89 2180 2807 |
Fax | + +49 89 2800362 |
Update this profile
|
Last update: 2002-04-15 11:30:52
#!/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"
|