Organisation profile: Multimodal Technologies, Inc.
[ ID = 3256 ] | M*Modal |
Organisation name | Multimodal Technologies, Inc. |
Short name or acronym | M*Modal |
Organisation type | Conversational Speech Recognition & Understanding Technologies |
Activity type | |
Address | 319 South Craig Street |
Postal Code | 15213 |
City | Pittsburgh PA |
Country | United States |
Phone | + ++1 412 578 9700 |
Fax | + ++1 412 578 0400 |
Email | |
Organisation URL | http://www.mmodal.com |
Logo | Description |
 |
Multimodal Technologies, Inc. is the leading enabler and provider of conversational speech solutions.
Our open standards-based, scalable products make it easy to create applications that actually understand what people say. ISVs and Enterprises rely on Multimodal's unique blend of conversational speech recognition, natural language understanding and biometrics technologies to enable embedded, handheld, desktop or server-based solutions that listen to commands, dictation, conversations, or media broadcasts, solutions that convert speech to facts.
|
| Contact |
Name | CEO Michael Finke |
Function | |
Department | |
Email | finke_(on)_mmodal.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2003-11-16 23:24:51
#!/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"
|
|