Organisation profile: Simmortel Voice Technologies (P) Ltd
[ ID = 3938 ] | Simmortel Voice |
Organisation name | Simmortel Voice Technologies (P) Ltd |
Short name or acronym | Simmortel Voice |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | F-6, SIIC, IIT Kanpur |
Postal Code | 208016 |
City | Kanpur |
Country | India |
Phone | +91 5122596645 |
Fax | + |
Email | info_(on)_simmortel.com |
Organisation URL | http://www.simmortel.com |
Logo | Description |
 |
Simmortel Voice is a leading provider of Speech Recognition Engines for Indian languages and accents to providers of media, content, value-added services and telecommunication companies. The engines are implemented as server-side software and are trained from scratch (no adaptation) for mobile phone speech in the respective language. Simmortel Voice also provides custom speech engines for especial applications and other languages, on request.
|
| Contact |
Name | Abhishek Singh |
Function | CEO |
Department | |
Email | info_(on)_simmortel.com |
Phone | +91 5122596645 |
Fax | + |
Update this profile
|
Last update: 2008-12-18 20:46: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"
|
|