|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2335 ] | DDL |
---|---|
Organisation name | Domain Dynamics Ltd. |
Short name or acronym | DDL |
Organisation type | Company |
Activity type | Speech technology |
Address | Thames Tower, Station Road |
Postal Code | RG1 1LX |
City | Reading |
Country | United Kingdom |
Phone | + +44 118 9023 777 |
Fax | + +44 118 9023 789 |
info_(on)_ddl.co.uk | |
Organisation URL | http://www.ddl.co.uk |
Logo | Description |
![]() |
Founded in 1990 to innovate and develop novel signal processing techniques, Domain Dynamics Ltd has built on its intellectual property with over 120 patents covering TESPAR® (Time Encoded Signal Processing and Recognition) and complimentary technologies (TACT). Based on this core development of intellectual property, Domain Dynamics Ltd is actively building applications competence in speech technologies, biometric security and signal processing. These are delivered in the form of Smart Voice and Smart Signal solutions into selected markets. The Smart Voice business offers efficient and secure voice authentication products using a voice biometric which can be incorporated into a wide range of wireless handheld products, e and m-commerce services, access control systems and toys. Smart Signal offers condition monitoring and signal processing solutions as value-added components to industry, transportation, energy and defence requiring enhanced safety, control and productivity. The company employs over 40 technical and commercial staff across Europe and North America, with headquarters based in Reading, UK. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2003-03-19 11:01:04 #!/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" |