|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1876 ] | Technical University of Budapest, Department of Telecommunications and Telematics |
---|---|
Organisation name | Technical University of Budapest, Department of Telecommunications and Telematics |
Short name or acronym | Technical University of Budapest, Department of Telecommunications and Telematics |
Organisation type | Center |
Activity type | Speech technology |
Address | Department of Telecommunications and Telematics Budapest University of Technology and Economics (BUTE) Pazmany Peter Setany 1/D |
Postal Code | H1117 |
City | Budapest |
Country | Hungary |
Phone | + +36 1 4634187 |
Fax | + +36 1 4633107 |
jutka_(on)_ttt-202.ttt.bme.hu | |
Organisation URL | http://www.ttt.bme.hu |
Logo | Description |
![]() |
Intensive theoretical and practical research work is carried on by in the fields of telecommunication network and instruments, data networks and man-machine relations. At present the investigations are concentrated on the design, organisation, economic and management aspects of telecommunication systems, especially on transmission methods (like SDH, ATM, TMN, etc.) The Department studies the present problems of speech recognition, speaker identification, and speech production by machine. The aim of this research is to produce machine intelligence capable of acoustic information exchange, e.g. within the framework of an application information system. A series of speech processing product are based on the principles and know-hows developed by the Department. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |