|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2681 ] | Lingsoft, Inc. |
---|---|
Organisation name | Lingsoft, Inc. |
Short name or acronym | Lingsoft, Inc. |
Organisation type | Company |
Activity type | Speech technology |
Address | Tehtaankatu 27-29D |
Postal Code | 00150 |
City | Helsinki |
Country | Finland |
Phone | + +358 9 668 9280 |
Fax | + +358 9 6689 2898 |
speech-info_(on)_lingsoft.fi | |
Organisation URL | http://speech.lingsoft.fi/ |
Logo | Description |
![]() |
The speech division of Lingsoft, Inc. develops voice command applications and applications using speech synthesis. The division also does projects for companies interested in voice recognition applications by developing customized solutions. Among other application areas they are exploring voice recognition for telecommunication services. In addition to the in-house research activities, they are also involved in several USIX projects. USIX is a technology program started by TEKES, the National Technology Agency Organization. |
Contact | |
Name | Antti Lahti |
Function | Product Manager |
Department | Speech Recognition |
Antti.Lahti_(on)_Lingsoft.fi | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-19 10:38:39 #!/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" |