Organisation profile: Speech Processing Research Laboratory, Electrical Engineering Department, Amirkabir University of Technology
[ ID = 3903 ] | SPRL, EEAUT |
Organisation name | Speech Processing Research Laboratory, Electrical Engineering Department, Amirkabir University of Technology |
Short name or acronym | SPRL, EEAUT |
Organisation type | University |
Activity type | Language or Speech Technology research |
Address | Electrical Engineering Department, Amirkabir University of Technology, 424 Hafez Avenue |
Postal Code | 15914 |
City | Tehran |
Country | Iran |
Phone | +98 21 6454 3392 |
Fax | +98 21 6640 6469 |
Email | |
Organisation URL | http://ee.aut.ac.ir/~sprl |
Logo | Description |
|
The speech processing laboratory has been an active research laboratory within the Electrical Engineering Department since 1998. Its main objective is to provide the required means for research in the fields of speech and audio processing. The research includes graduate projects and other research projects in the relevant fields.
|
| Contact |
Name | Dr. Seyed Mohammad Ahadi |
Function | Associate Professor |
Department | Electrical Engineering Department, Amirkabir University of Technology |
Email | sma_(on)_aut.ac.ir |
Phone | +98 21 6454 3336 |
Fax | +98 21 6640 6469 |
Update this profile
|
Last update: 2008-08-30 07:54:55
#!/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"
|
|