|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0962 ] | Dr. Pavel Skrelin |
---|---|
Name | Skrelin, Dr. Pavel |
Job Title | Head |
Organisation | Dept. of Phonetics, St.-Petersburg State University |
Address | Universitetskaya 11 Philological faculty |
Postal Code | 199034 |
City | Saint-Petersburg |
Country | Russian Federation |
Phone | + (812) 3289565 |
Fax | + (812) 3237370 |
Mobile | + |
skrelin_(on)_phonetics.pu.ru [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ISCA NEALT |
Languages | English |
Specialism | Speech technology:
Acoustic Modeling Acoustic Phonetics Data Corpus Collection fundamental frequency estimation Intonation Large speech corpora Phonology Pronunciation Modelling Prosodic Studies in Spontaneous Language Analysis Prosody Prosody (Linguistic Description of) Prosody modelling Prosody perception PSOLA, Harmonic + Noise Signal Analysis Speech Acoustics Speech Analysis Speech Databases Speech Processing Speech Synthesis Speech Technologies Spoken Language Resources and Evaluation Spontaneous Speech Text-to-Speech |
Photograph | Description or CV |
http://www.phonetics.pu.ru/skrelin/index.html | |
Update your profile | Last update: 2008-08-28 16:11:41 #!/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" |