|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4434 ] | Speetech |
---|---|
Organisation name | Speech Technology |
Short name or acronym | Speetech |
Organisation type | Private company |
Activity type | Language or Speech Technology research |
Address | 403-15 Uralsky lane |
Postal Code | 220037 |
City | Minsk |
Country | Belarus |
Phone | +375 2669312 |
Fax | +375 2669312 |
catalog_(on)_speetech.com | |
Organisation URL | http://speetech.com/ |
Logo | Description |
![]() |
Speech Technology Ltd. designs and develops science intensive software for recording, processing and analysis of speech data. Our products make it possible to recognize speech, change voice and speech rate, implement voice biometrics, analyze audio/video data and many others.Our team of developers is professionals in the range of implementation of cross-platform applications from mobile devices to server stations. |
Contact | |
Name | Kate |
Function | |
Department | administration |
catalog_(on)_speetech.com | |
Phone | +375 2275913 |
Fax | +375 2275913 |
![]() |
Last update: 2011-10-27 16:18:11 #!/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" |