|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2229 ] | Surf Communication Solutions, Inc. | 
|---|---|
| Organisation name | Surf Communication Solutions, Inc. | 
| Short name or acronym | Surf Communication Solutions, Inc. | 
| Organisation type | Private company | 
| Activity type | Other expertise relevant for Lang+Speech Technology | 
| Address | Tavor Building, P.O. Box 343 | 
| Postal Code | 20692 | 
| City | Yokne'am | 
| Country | Israel | 
| Phone | +972 (4) 9095777 | 
| Fax | +972 (4) 9594055 | 
| surf_(on)_surf-com.com | |
| Organisation URL | http://www.surf-com.com/ | 
| Logo | Description | 
![]()  | 
Surf provides a complete software framework including integrated RTP/RTCP running on a DSP, enabling easy and comprehensive DSP control, monitoring, and diagnostic functions. A Host-DSP interface is provided for Linux, VxWorks, and Windows® operating systems (additional operating systems are available upon request) and is supported over Ethernet and HPI/PCI communication paths. The SurfUP Open Framework enables solution providers to integrate their own intellectual property into the Surfs existing feature-rich media processing package. Following are the software specs: Voice Compression  G.711, G.726, G.723.1A, G.729AB, G.729E, G.728, G.722.2 (WB-AMR), GSM-NB-AMR, GSM-FR, GSM-HR, GSM-EFR, EVRC, SMV, Q-CELP13  G.711-compliant VAD/CNG/PLC Video Compression  H.263 Baseline  MPEG 4 Simple Profile  Resolution: any up to full D1  Frame rate: any up to 30 FPS Tones and Telephony Features  DTMF detection/generation/suppression  DTMF and other telephony relays using RFC2833  CID types 1 & 2 generation and detection  MF-R1 & MF-R2 tone generation and detection  Call progress tone detection  User-defined tone/event detection and generation  Tone generation and detection on the IP side Echo Canceller  G.168-2000-compliant with tail length of 32, 64, 128ms  Automatic turn-off upon detection of Fax and Modem; port switches to transparent pass-through mode Network Support for Voice  RTP, RTCP: RFC 3550/3551  Adaptive and programmable jitter buffer  Variable frame size (5ms to 30ms)  | 
| Contact | |
| Name | Marketing Manager Ruth Bridger | 
| Function | |
| Department | |
| ruth_(on)_surf-com.com | |
| Phone | + | 
| Fax | + | 
| 
 
 | 
Last update: 2005-05-09 12:43:15 #!/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" |