Speech Recognition of a Voice-Access Automotive Telematics. System using VoiceXML

Size: px
Start display at page:

Download "Speech Recognition of a Voice-Access Automotive Telematics. System using VoiceXML"

Transcription

1 Speech Recognition of a Voice-Access Automotive Telematics System using VoiceXML Ing-Yi Chen Tsung-Chi Huang ichen@csie.ntut.edu.tw rick@ilab.csie.ntut.edu.tw Department of Computer Science and Information Engineering, National Taipei University of Technology, Taiwan, ROC Abstract In order to provide a safe way for drivers to retrieve information, a voice-access Telematics system is implemented based on VoiceXML and web architecture. The noise problems during moving affect recognition rate greatly, and make drivers repeat commands once and once again. For the sake of raising the accuracy of recognition, this paper makes several improvements to the major components of Automated Speech Recognition engine. After applying these enhancements, the average recognition rate exceeds 70% even in the high speed condition. This result makes the Telematics system more practical. Keywords : Telematics system, VoiceXML, Speech Recognition 1. INTRODUCTION The main concept of Telematics is the combination of telecommunication and information in the vehicle. Telematics is viewed as the third revolution after high compression engine and micro electronic system in the automobile industry. In the past, the first generation of Telematics system was composed of a GPS (Global Positioning System) and a CD-ROM module for data storage, and the main function of this system was just for car navigation. The second generation of Telematics integrated the telecommunication module to connect the call center of the service provider. In the recent years, with the integration of telecommunication and internet technology, Telematics systems can retrieve more data from other content providers and provide more useful and real-time information for drivers. With the convenience of Telematics systems, drivers take more time and attention on operating these systems while they are driving. These distractions usually cause many car accidents. Due to this reason, it is necessary to operate Telematics systems with more safe and simple way. Voice-access interface is a proper solution for this problem. Drivers send commands by speaking to Telematics systems, and receive responses in the form of voice. In this hand-free environment, the distractions can be reduced greatly. With the improvement of voice technologies, it is easier to apply voice-access interface to the Telematics systems. 465

2 2. ANALYSIS Traditionally, the IVR (Interactive Voice Response) systems must be deployed and implemented on the specialized PBX (Private Branch Exchange) hardware. Programmers have to develop applications in the particular environment, because each vendor provides a set of proprietary programming interface and library. Besides, the voice responses during the conversation usually need to be pre-recorded, and users are restricted to use the telephone keypad to input their commands (DTMF mode, Dual-Tone Multi-Frequency, i.e., touch-tone). Therefore, the service providers usually take many efforts on developing the IVR systems, and actually, these systems are just one-way (DTMF input, voice output) voice systems. VoiceXML In order to provide an open and standard platform for voice system, several CTI (Computer Telephony Integration) companies (IBM, AT&T, Lucent and Motorola) submitted the VoiceXML specification to the W3C organization in The key technologies of VoiceXML are TTS (Text to speech) and ASR (Automated Speech Recognition). TTS provides a great support in transforming a large number of text data into voices. ASR is an important component to recognize what users say. That means the VoiceXML-based systems are truly two-way (voice input, voice output) voice systems. Due to these benefits of VoiceXML, it is easier to implement a voice-access system based on web architecture. By replacing the markup language with VoiceXML and integrating with a voice server, a basic voice system is set up. The Telematics system is composed of this voice system and the GPS/GSM module. Figure1. VoiceXML based Telematics system. The major difference between traditional and VoiceXML-based IVR system is the speech recognition input mode, and it is also the most important key of the whole system. The accuracy of recognition affects the practicability of voice system greatly, especially in the environment of Telematics system. In order to decrease distractions during driving, the recognition rate must be raised as high as possible. Noise Issues In the environment of Telematics system, the major obstacle to recognition is the noise during car moving. These noises usually cause the incorrect results in recognition. The main reasons are as follows. 466

3 i. In general, voice system usually prompts some information before users select their options, but it is redundant when users are familiar with this system. Therefore, most voice systems provide the function called Barge-in. This function provides users to interrupt the prompt information and enter the next voice layer directly. In the Telematics environment, the microphone that installed in the car is a sensitive one in order to receive the voices from driver precisely. That means each louder noise such as conversation of passengers or sound of horn is possibly regarded as a voice input command. ii. The second issue is the noise in low frequency during car is moving. These continued noises do not cause the Barge-in issue above, but affect the accuracy of recognition. The mixed waves of voice signal decrease the true signals that drivers input. If the signals of noise exceed the limit, ASR engine will receive incomplete waves and fail to recognize the correct input commands. This kind of noise is relative to the friction about the stability of streets and moving speed. When the car drives on a smoother street with a lower speed, the noise of low frequency is smaller; on the contrary, especially in a high speed condition, the Telematics system usually fails to recognize the input commands due to the low frequency noises. Figure2 shows the recognition rates in different test environments. Vehicle (80kph) 0.32 Vehicle (60kph) 0.58 Vehicle (0kph) General Phone Line PC-Headset Recognition Rate Figure2. Recognition rates in different test environments. Each test environment uses 100 sample single words to test the recognition rate. Obviously, in the PC-Headset and stop environments, the recognition rates are proper to fit the requirement. With the increasing speed, the recognition rates are lower and lower. In the high speed condition (100kph), the system is almost unable to recognize any word due to the noises. This result shows the seriousness of noise problems. 3. SOLUTION Figure3 shows the basic steps of recognition process. 467

4 Recognition Processes Figure3. Recognition Processes Step1: User Input Microphone catches user s voices in the form of analog signals. Step2: Digitization Sound card digitizes the analog signals. Step3: Phonetic Breakdown Breaking signals into phonemes. Step4: Matching According to the grammar, phonetic representation and vocabulary library, the system returns the proper word. The whole process of recognition can be separated into hardware and software. The telephone line from the telephone company to the PBX server was a traditional analog line, and it caused many unnecessary signals during signal transmission. Hence, the system provider decides to upgrade the whole telephone system form analog to digital. High (100kph) Middle (80kph) Low (60kph) Park (0kph) Recognition Rate Figure4. Recognition rates in digital environment. The test results of digital environment are much better than before. The hardware upgrade gains an effective improvement in the process of transforming signals from analog to digital (From Step1 to Step3), but the recognition rates of higher speed are still unable to fit the requirement. In order to reduce the effect of these noise problems and increase the accuracy of recognition, the Telematics system is disabled the function of Barge-in to avoid all unexpected interruptions, and make several enhancements as follows. Improvements in Recognition The most important fundamentals of recognition process are vocabulary library and grammar of applications. When ASR engine receives the digital signals, it recognizes each phoneme depending on the vocabulary library, and returns a matching list to the VoiceXML application. 468

5 VoiceXML application receives the matching list and compares with grammar list. If there is a matching word in the grammar list, application will process this command. Otherwise, application will return a nomatch error to user. Therefore, improving these two elements is the most efficient way to raise the recognition rate. Figure5. Command matching flow i. Basically, ASR engine contains a regular vocabulary library. It is sufficient to recognize basic words. In the Telematics system, applications usually contain many peculiar options such as name of street or restaurant. It is difficult to recognize these words especially in the noise environment. The first enhancement is to rebuild the vocabulary library of recognition engine with the specified words which are usually used in this Telematics system. This helps ASR engine to recognize a particular word more easily. The line in figure5 shows this result. The recognition rate retains upon 60% after rebuilding the ASR engine. Recognition Rate(%) Park 0 Low 60 Middle 80 High 100 Car Speed(km/h) Analog Digital Digital + new ASR engine Figure6. ii. In the later stage of implementation, the W3C announce the VoiceXML 2.0 specification. In this specification, the major improvement is to strengthen the capability of recognizing grammar. This helps application to specify a separate word more effective. By upgrading the VoiceXML from 1.0 to 2.0, the recognition rate is higher than before. Figure7 shows the final results after these improvements. Recognition rates exceed 70% in each testing speed, and it is reach the requirement. 469

6 High (100kph) Middle (80kph) Low (60kph) Park (0kph) Recognition Rate Figure7. Final Recognition Rate 4. CONCLUSION In this paper, the Telematics system is implemented with voice-access capability by using VoiceXML. In order to provide a safe and convenient voice interface, the most important thing of whole system is to raise the recognition rate as high as possible. After applying several improvements, the final average recognition rates exceed 70% in the real driving environment. This result is proper enough to apply in a Telematics system. 5. ACKNOWLEDGEMENT The authors would like to thank the National Science Council (NSC E ) for supports to this project. 6. REFERENCES [1] C. Bisdikian, I. Boamah, V. Rasin, Intelligent Pervasive Middleware for Context-Based and Localized Telematics Services, International Conference on Mobile Computing and Networking, [2] D. Reilly, A. Taleb-Bendiab, A Service-Based Architecture for In-Vehicle Telematics Systems, IEEE 22nd International Conference on Distributed Computing Systems Workshops, [3] Y. Obuchi, E. Nyberg, T. Mitamura, M. Duggan, Robust Dialog Management Architecture using VoiceXML for Car Telematics Systems, Proc. IEEE Workshop on DSP in Mobile and Vehicular Systems, April, [4] E.Nyberg, T.Mitamura, P.Placeway, M.Duggam and N.Hataoka, DialogXML : Extending Voice-XML for Dynamic Dialog Management, Proc. of HLT-2002, [5] N. Hataoka, Y. Obuchi, T. Mitamura and E. Nyberg, Robust speech dialog interface for car telematics service, IEEE Consumer Communications and Networking Conference 2004, Page 331~335, Jan [6] Carl M. Rebman, Jr., Milam W. Aiken and Casey G. Cegielski, Speech recognition in the human computer interface, Information & Management, Volume 40, Issue 6, July 2003, Pages [7] J. Gröschel, F. Philipp, St. Skonetzki, H. Genzwürker, Th. Wetter and K. Ellinger, Automated speech recognition for time recording in out-of-hospital emergency medicine, Resuscitation, Volume 60, Issue 2, February 2004, Pages

Thin Client Development and Wireless Markup Languages cont. VoiceXML and Voice Portals

Thin Client Development and Wireless Markup Languages cont. VoiceXML and Voice Portals Thin Client Development and Wireless Markup Languages cont. David Tipper Associate Professor Department of Information Science and Telecommunications University of Pittsburgh tipper@tele.pitt.edu http://www.sis.pitt.edu/~dtipper/2727.html

More information

Interfaces de voz avanzadas con VoiceXML

Interfaces de voz avanzadas con VoiceXML Interfaces de voz avanzadas con VoiceXML Digital Revolution is coming Self driving cars Self voice services Autopilot for CAR Speaker Automatic Speech Recognition ASR DTMF keypad SIP / VoIP or TDM Micro

More information

IVR Primer Introduction

IVR Primer Introduction IVR Primer Introduction Speech-enabled applications are quickly becoming very popular. Why? Because using voice to navigate is more natural for users than punching telephone keypads. Speech as a navigation

More information

An Introduction to VoiceXML

An Introduction to VoiceXML An Introduction to VoiceXML ART on Dialogue Models and Dialogue Systems François Mairesse University of Sheffield F.Mairesse@sheffield.ac.uk http://www.dcs.shef.ac.uk/~francois Outline What is it? Why

More information

VoiceXML Tutorial. Part 1: VoiceXML Basics and Simple Forms

VoiceXML Tutorial. Part 1: VoiceXML Basics and Simple Forms VoiceXML Tutorial Part 1: VoiceXML Basics and Simple Forms What is VoiceXML? XML Application W3C Standard Integration of Multiple Speech and Telephony Related Technologies Automated Speech Recognition

More information

Cisco IOS VoiceXML Browser

Cisco IOS VoiceXML Browser Cisco IOS VoiceXML Browser Q. What is VoiceXML? A. Voice Extensible Markup Language (VoiceXML) is an XML-based creation environment for voice applications including user interfaces for use with automatic-speech-recognition

More information

Open Source VoiceXML Interpreter over Asterisk for Use in IVR Applications

Open Source VoiceXML Interpreter over Asterisk for Use in IVR Applications Open Source VoiceXML Interpreter over Asterisk for Use in IVR Applications Lerato Lerato, Maletšabisa Molapo and Lehlohonolo Khoase Dept. of Maths and Computer Science, National University of Lesotho Roma

More information

Version 2.6. Virtual Receptionist Stepping Through the Basics

Version 2.6. Virtual Receptionist Stepping Through the Basics Version 2.6 Virtual Receptionist Stepping Through the Basics Contents What is a Virtual Receptionist?...3 About the Documentation...3 Ifbyphone on the Web...3 Setting Up a Virtual Receptionist...4 Logging

More information

IVR CRM Integration. Migrating the Call Center from Cost Center to Profit. Definitions. Rod Arends Cheryl Yaeger BenchMark Consulting International

IVR CRM Integration. Migrating the Call Center from Cost Center to Profit. Definitions. Rod Arends Cheryl Yaeger BenchMark Consulting International IVR CRM Integration Migrating the Call Center from Cost Center to Profit Rod Arends Cheryl Yaeger BenchMark Consulting International Today, more institutions are seeking ways to change their call center

More information

Voicemail. Advanced User s Guide. Version 2.0

Voicemail. Advanced User s Guide. Version 2.0 Advanced User s Guide Version 2.0 Contents Introduction to the Documentation... 3 About the Documentation... 3 Ifbyphone on the Web... 3 Logging in to your ifbyphone Account... 3 Setting Up a Voice Mailbox...

More information

Materials Software Systems Inc (MSSI). Enabling Speech on Touch Tone IVR White Paper

Materials Software Systems Inc (MSSI). Enabling Speech on Touch Tone IVR White Paper Materials Software Systems Inc (MSSI). Enabling Speech on Touch Tone IVR White Paper Reliable Customer Service and Automation is the key for Success in Hosted Interactive Voice Response Speech Enabled

More information

A Development Tool for VoiceXML-Based Interactive Voice Response Systems

A Development Tool for VoiceXML-Based Interactive Voice Response Systems A Development Tool for VoiceXML-Based Interactive Voice Response Systems Cheng-Hsiung Chen Nai-Wei Lin Department of Computer Science and Information Engineering National Chung Cheng University Chiayi,

More information

VXI* IVR / IVVR. VON.x 2008 OpenSER Summit. Ivan Sixto CEO / Business Dev. Manager. San Jose CA-US, March 17th, 2008

VXI* IVR / IVVR. VON.x 2008 OpenSER Summit. Ivan Sixto CEO / Business Dev. Manager. San Jose CA-US, March 17th, 2008 VXI* IVR / IVVR San Jose CA-US, March 17th, 2008 Ivan Sixto CEO / Business Dev. Manager VON.x 2008 OpenSER Summit Index 1 About INET 2 What is VoiceXML? 3 VXI* Platforms for IVR / IVVR 4 Customer's Business

More information

Using Dialogic Boards to Enhance Voice Mail/Messaging Applications. Application Note

Using Dialogic Boards to Enhance Voice Mail/Messaging Applications. Application Note Using Dialogic Boards to Enhance Voice Mail/Messaging Applications Application Note Application Note Using Dialogic Boards to Enhance Voice Mail/Messaging Applications Executive Summary Voice mail, voice

More information

Contents. Specialty Answering Service. All rights reserved.

Contents. Specialty Answering Service. All rights reserved. Contents 1 Introduction... 2 2 PBX... 3 3 IP PBX... 4 3.1 How It Works... 4 3.2 Functions of IP PBX... 5 3.3 Benefits of IP PBX... 5 4 Evolution of IP PBX... 6 4.1 Fuelling Factors... 6 4.1.1 Demands from

More information

A Comparative Analysis of Speech Recognition Platforms

A Comparative Analysis of Speech Recognition Platforms Communications of the IIMA Volume 9 Issue 3 Article 2 2009 A Comparative Analysis of Speech Recognition Platforms Ore A. Iona College Follow this and additional works at: http://scholarworks.lib.csusb.edu/ciima

More information

Voice Processing Standards. Mukesh Sundaram Vice President, Engineering Genesys (an Alcatel company)

Voice Processing Standards. Mukesh Sundaram Vice President, Engineering Genesys (an Alcatel company) Voice Processing Standards Mukesh Sundaram Vice President, Engineering Genesys (an Alcatel company) Agenda Interactive Voice Response Speech Processing Computer Telephony Integration IP Telephony Standards

More information

Speech-Enabled Interactive Voice Response Systems

Speech-Enabled Interactive Voice Response Systems Speech-Enabled Interactive Voice Response Systems Definition Serving as a bridge between people and computer databases, interactive voice response systems (IVRs) connect telephone users with the information

More information

VOICE INFORMATION RETRIEVAL FOR DOCUMENTS. Except where reference is made to the work of others, the work described in this thesis is.

VOICE INFORMATION RETRIEVAL FOR DOCUMENTS. Except where reference is made to the work of others, the work described in this thesis is. VOICE INFORMATION RETRIEVAL FOR DOCUMENTS Except where reference is made to the work of others, the work described in this thesis is my own or was done in collaboration with my advisory committee. Weihong

More information

9RLFH$FWLYDWHG,QIRUPDWLRQ(QWU\7HFKQLFDO$VSHFWV

9RLFH$FWLYDWHG,QIRUPDWLRQ(QWU\7HFKQLFDO$VSHFWV Université de Technologie de Compiègne UTC +(8',$6

More information

Lesson 2: Technology Applications Major Transit Technologies Grouped by Function

Lesson 2: Technology Applications Major Transit Technologies Grouped by Function Technology Tool Accounting Software Automatic Passenger Counters (APC) Automated Scheduling and Routing Software Automated Vehicle Location Systems (AVL) Communications Computer-Assisted Software for Demand

More information

Phone Routing Stepping Through the Basics

Phone Routing Stepping Through the Basics Ng is Phone Routing Stepping Through the Basics Version 2.6 Contents What is Phone Routing?...3 Logging in to your Ifbyphone Account...3 Configuring Different Phone Routing Functions...4 How do I purchase

More information

Cisco IOS Voice XML Browser

Cisco IOS Voice XML Browser Cisco IOS Voice XML Browser Cisco Unified Communications is a comprehensive IP communications system of voice, video, data, and mobility products and applications. It enables more effective, more secure,

More information

Voice XML: Bringing Agility to Customer Self-Service with Speech About Eric Tamblyn Voice XML: Bringing Agility to Customer Self-Service with Speech

Voice XML: Bringing Agility to Customer Self-Service with Speech About Eric Tamblyn Voice XML: Bringing Agility to Customer Self-Service with Speech Voice XML: Bringing Agility to Customer Self-Service with Speech Author: Eric Tamblyn, Director of Voice Platform Solutions Engineering, Genesys Telecommunications Laboratories, Inc. About Eric Tamblyn

More information

Cisco IOS Voice XML Browser

Cisco IOS Voice XML Browser Cisco IOS Voice XML Browser Cisco Unified Communications is a comprehensive IP communications system of voice, video, data, and mobility products and applications. It enables more effective, more secure,

More information

Real-World Experience Adding Speech to IVR Solutions with MRCP

Real-World Experience Adding Speech to IVR Solutions with MRCP Real-World Experience Adding Speech to IVR Solutions with MRCP A webinar by NMS, ScanSoft and CapitalOne Agenda Introduction to speech technology Dr. Rob Kassel, Senior Product Manager, ScanSoft, Inc.

More information

Application Note. Using Dialogic Boards to Enhance Interactive Voice Response Applications

Application Note. Using Dialogic Boards to Enhance Interactive Voice Response Applications Using Dialogic Boards to Enhance Interactive Voice Response Applications Using Dialogic Boards to Enhance Interactive Voice Response Applications Executive Summary Interactive Voice Response (IVR) systems

More information

We KNOW We CARE We SERVE. Helping Businesses Make Intelligent Use of Technology. Sample Company. Telephone Engineering Analysis

We KNOW We CARE We SERVE. Helping Businesses Make Intelligent Use of Technology. Sample Company. Telephone Engineering Analysis We KNOW We CARE We SERVE Helping Businesses Make Intelligent Use of Technology Sample Company Telephone Engineering Analysis IVR Systemic Inconsistencies October 22, 2013 TABLE OF CONTENTS Overview...

More information

IP Media Servers for Next-Generation Contact Centers

IP Media Servers for Next-Generation Contact Centers White Paper September 2008 IP Media Servers for Next-Generation Contact Centers Overview Next-generation contact centers deliver services across multiple modes of communication: voice, fax, e-mail, instant

More information

1. Login to www.ifbyphone.com with your User ID and password. Select Virtual Receptionist from the Basic Services tab.

1. Login to www.ifbyphone.com with your User ID and password. Select Virtual Receptionist from the Basic Services tab. Virtual Receptionist Virtual Receptionist is a hosted PBX auto attendant service with intelligent routing that automatically greets and routes phone calls based on your office schedule. It gives your company

More information

RAPID VOICEXML DEVELOPMENT USING IBM S GRAPHICAL CALL FLOW BUILDER

RAPID VOICEXML DEVELOPMENT USING IBM S GRAPHICAL CALL FLOW BUILDER RAPID VOICEXML DEVELOPMENT USING IBM S GRAPHICAL CALL FLOW BUILDER TR 29.3787 May 10, 2004 Ciprian Agapi Felipe Gomez James R. Lewis IBM Pervasive Computing Boca Raton, Florida ii Abstract The evolution

More information

VoiceXML-Based Dialogue Systems

VoiceXML-Based Dialogue Systems VoiceXML-Based Dialogue Systems Pavel Cenek Laboratory of Speech and Dialogue Faculty of Informatics Masaryk University Brno Agenda Dialogue system (DS) VoiceXML Frame-based DS in general 2 Computer based

More information

PBS&J Drives Caller Satisfaction with Voxeo-Powered 511 Phone Applications

PBS&J Drives Caller Satisfaction with Voxeo-Powered 511 Phone Applications CASE STUDY: Prophecy IVR Hosting PBS&J Drives Caller Satisfaction with Voxeo-Powered 511 Phone Applications PBS&J provides experience in engineering, program management, and information technologies to

More information

V O C A L C O M H E R M E S I V R. H e r m e s I V R. I n t e r a c t i v e V o i c e R e s p o n s e

V O C A L C O M H E R M E S I V R. H e r m e s I V R. I n t e r a c t i v e V o i c e R e s p o n s e H e r m e s I V R I n t e r a c t i v e V o i c e R e s p o n s e W h a t i s I V R? IVR stands for Interactive Voice Response and it uses one of the most widely accepted and versatile devices Available

More information

PRODUCT GUIDE Version 1.2 HELPDESK EXPRESS 1.0

PRODUCT GUIDE Version 1.2 HELPDESK EXPRESS 1.0 Version 1.2 HELPDESK EXPRESS 1.0 Revision 1 - March 2005 PRODUCT GUIDE HELPDESK EXPRESS 1.0 Version 1.2 Revision 1 - February 2005 ProTel Communications Ltd. follows a policy of continuous development

More information

A design of the transcoder to convert the VoiceXML documents into the XHTML+Voice documents

A design of the transcoder to convert the VoiceXML documents into the XHTML+Voice documents A design of the transcoder to convert the VoiceXML documents into the XHTML+Voice documents JIEUN KIM, JIEUN PARK, JUNSUK PARK, DONGWON HAN Computer & Software Technology Lab, Electronics and Telecommunications

More information

Building Applications with Vision Media Servers

Building Applications with Vision Media Servers Building Applications with Vision Media Servers Getting Your Ideas to Market Fast David Asher Director, Product Management, Platform Solutions NMS at a Glance Founded in 1983, publicly traded since 1994

More information

Dialogos Voice Platform

Dialogos Voice Platform Dialogos Voice Platform Product Datasheet D i a l o g o s S p e e c h C o m m u n i c a t i o n S y s t e m s S. A. September 2007 Contents 1 Dialogos Voice Platform... 3 1.1 DVP features... 3 1.1.1 Standards-based

More information

VoiceCampus: An Automated Interactive Voice Response System for Students

VoiceCampus: An Automated Interactive Voice Response System for Students VoiceCampus: An Automated Interactive Voice Response System for Students Andreas Velonis, Theofilos Milonas, George Papazidis, George Dimitriou Cardisoft S.A., 60 Monastiriou street, GR-54627, Thessaloniki,

More information

Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations

Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations Ryu HyunKi, Moon ChangSoo, Yeo ChangSub, and Lee HaengSuk Abstract In this paper,

More information

Need for Signaling and Call Control

Need for Signaling and Call Control Need for Signaling and Call Control VoIP Signaling In a traditional voice network, call establishment, progress, and termination are managed by interpreting and propagating signals. Transporting voice

More information

CCXML & the Power of Standards-Based Call Control E X E C U T I V E B R I E F I N G M A R C H 2 0 1 0

CCXML & the Power of Standards-Based Call Control E X E C U T I V E B R I E F I N G M A R C H 2 0 1 0 CCXML & the Power of Standards-Based Call Control E X E C U T I V E B R I E F I N G M A R C H 2 0 1 0 The Call Control Challenge Advanced call control functionality enables companies to more efficiently

More information

Evolving Tool Strategies in the Voice Channel

Evolving Tool Strategies in the Voice Channel WHITE PAPER Evolving Tool Strategies in the Voice Channel Following the ways of the web INTRODUCTION Sponsored by Publication Date: July 2007 For over two decades, the interactive voice response (IVR)

More information

Mobile Application Languages XML, Java, J2ME and JavaCard Lesson 03 XML based Standards and Formats for Applications

Mobile Application Languages XML, Java, J2ME and JavaCard Lesson 03 XML based Standards and Formats for Applications Mobile Application Languages XML, Java, J2ME and JavaCard Lesson 03 XML based Standards and Formats for Applications Oxford University Press 2007. All rights reserved. 1 XML An extensible language The

More information

Evaluating Speech Self-Service Platforms

Evaluating Speech Self-Service Platforms December 8, 2004 Evaluating Speech Self-Service Platforms by Elizabeth Herrell TECH CHOICES Helping Business Thrive On Technology Change TECH CHOICES Includes a Forrester Wave December 8, 2004 Evaluating

More information

Automated Profile Vehicle Using GSM Modem, GPS and Media Processor DM642

Automated Profile Vehicle Using GSM Modem, GPS and Media Processor DM642 2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Automated Profile Vehicle Using GSM Modem, GPS and Media Processor DM642 Muhammad

More information

Enabling Speech Based Access to Information Management Systems over Wireless Network

Enabling Speech Based Access to Information Management Systems over Wireless Network Enabling Speech Based Access to Information Management Systems over Wireless Network M. Bagein, O. Pietquin, C. Ris and G. Wilfart 1 Faculté Polytechnique de Mons - TCTS Lab. Parc Initialis - Av. Copernic,

More information

Deploying Cisco Unified Contact Center Express - Digital

Deploying Cisco Unified Contact Center Express - Digital Course Code: CUCCX Vendor: Cisco Course Overview Duration: 5 RRP: 2,396 Deploying Cisco Unified Contact Center Express - Digital Overview This course provides you with hands-on experience and knowledge

More information

Owner's Manual for Voice Control. The Convenient Alternative to Manual Control.

Owner's Manual for Voice Control. The Convenient Alternative to Manual Control. Owner's Manual for Voice Control. The Convenient Alternative to Manual Control. 2000 BMW AG Munich/Germany Reprinting, including excerpts, only with the written consent of BMW AG, Munich. Part number 01

More information

Email Signatures. Advanced User s Guide. Version 2.0

Email Signatures. Advanced User s Guide. Version 2.0 Advanced User s Guide Version 2.0 Contents Email Signatures... 3 About the Documentation... 3 Ifbyphone on the Web... 3 Copying Click-to-XyZ Code... 4 Logging in to your ifbyphone Account... 4 Web-Based

More information

Envox Call Information Manager

Envox Call Information Manager Envox Call Information Manager Are you a developer looking for a way to integrate telephone call management and associated customer information into your existing applications? Have your customers expressed

More information

Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards

Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards , pp. 143-150 http://dx.doi.org/10.14257/ijseia.2015.9.7.15 Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards Ryu HyunKi 1, Yeo ChangSub 1, Jeonghyun

More information

An OSGi based HMI for networked vehicles. Telefónica I+D Miguel García Longarón

An OSGi based HMI for networked vehicles. Telefónica I+D Miguel García Longarón June 10-11, 2008 Berlin, Germany An OSGi based HMI for networked vehicles Telefónica I+D Miguel García Longarón Networked Vehicle 2 Networked Vehicle! Tomorrow, the vehicles will be networked! Using Always

More information

2014 Direct Drive, Inc. All rights reserved.

2014 Direct Drive, Inc. All rights reserved. 2014 Direct Drive, Inc. All rights reserved. Overview Direct Drive offers a complete range of capabilities with IVR speech and touchtone recognition, and blended agent / IVR hybrid solutions customized

More information

Buying Guide: On-Demand vs. On-Premise IVR Systems

Buying Guide: On-Demand vs. On-Premise IVR Systems White Paper Buying Guide: On-Demand vs. On-Premise IVR Systems Selecting a Deployment Platform for Voice-Based Services NOVEMBER 2008 1310 Villa Street Mountain View, CA 94041 T: 650.930.9000 clients@tellme.com

More information

The preliminary design of a wearable computer for supporting Construction Progress Monitoring

The preliminary design of a wearable computer for supporting Construction Progress Monitoring The preliminary design of a wearable computer for supporting Construction Progress Monitoring 1 Introduction Jan Reinhardt, TU - Dresden Prof. James H. Garrett,Jr., Carnegie Mellon University Prof. Raimar

More information

INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET-

INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET- ABSTRACT INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET- Bahidja Boukenadil¹ ¹Department Of Telecommunication, Tlemcen University, Tlemcen,Algeria Now in the world, the exchange of information between

More information

MITEL. 5000 Communications Platform

MITEL. 5000 Communications Platform MITEL 5000 Communications Platform Today s Hybrid Communications Platform In today s competitive business environment, you understand the need to optimize the performance of your organization by utilizing

More information

The Cross-Media Contact Center

The Cross-Media Contact Center Whitepaper The Cross-Media Contact Center The Next-Generation Replacement for the Traditional Call Center Intel in Communications Executive Summary Because call centers are a principal point of contact

More information

Deploying Cisco Unified Contact Center Express Volume 1

Deploying Cisco Unified Contact Center Express Volume 1 Deploying Cisco Unified Contact Center Express Volume 1 Course Introduction Learner Skills and Knowledge Course Goal and Course Flow Additional References Your Training Curriculum General Administration

More information

VoiceXML. Erik Harborg SINTEF IKT. Presentasjon, 4. årskurs, NTNU, 2007-04-17 ICT

VoiceXML. Erik Harborg SINTEF IKT. Presentasjon, 4. årskurs, NTNU, 2007-04-17 ICT VoiceXML Erik Harborg SINTEF IKT Presentasjon, 4. årskurs, NTNU, 2007-04-17 1 Content Voice as the user interface What is VoiceXML? What type of applications can be implemented? Example applications VoiceXML

More information

AVoiceportal Enhanced by Semantic Processing and Affect Awareness

AVoiceportal Enhanced by Semantic Processing and Affect Awareness AVoiceportal Enhanced by Semantic Processing and Affect Awareness Felix Burkhardt, Joachim Stegmann, Markus VanBallegooy T-Systems International GmbH (felix.burkhardt joachim.stegmann markus.van-ballegooy)@t-systems.com

More information

Smartphone 3.0. Voicemail / IVR Installation Roadmap

Smartphone 3.0. Voicemail / IVR Installation Roadmap Smartphone 3.0 Voicemail / IVR Installation Roadmap Voicemail / IVR Installation Roadmap Smartphone 3.0 for Windows 95/NT/2000 Smartphone 3.0 4 Contents Preface...7 Aboutthedocumentationset...7 Othersourcesofinformation...8

More information

Support and Compatibility

Support and Compatibility Version 1.0 Frequently Asked Questions General What is Voiyager? Voiyager is a productivity platform for VoiceXML applications with Version 1.0 of Voiyager focusing on the complete development and testing

More information

Getting Started with Cisco Unified IP IVR, Release 8.5(1)

Getting Started with Cisco Unified IP IVR, Release 8.5(1) Getting Started with Cisco Unified IP IVR, Release 8.5(1) December 2010 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000

More information

Prevention of Spam over IP Telephony (SPIT)

Prevention of Spam over IP Telephony (SPIT) General Papers Prevention of Spam over IP Telephony (SPIT) Juergen QUITTEK, Saverio NICCOLINI, Sandra TARTARELLI, Roman SCHLEGEL Abstract Spam over IP Telephony (SPIT) is expected to become a serious problem

More information

! <?xml version="1.0">! <vxml version="2.0">!! <form>!!! <block>!!! <prompt>hello World!</prompt>!!! </block>!! </form>! </vxml>

! <?xml version=1.0>! <vxml version=2.0>!! <form>!!! <block>!!! <prompt>hello World!</prompt>!!! </block>!! </form>! </vxml> Using VoiceXML! Language spec 2.0! Includes support for VUI and for telephony applications (call forward, transfers, etc) " Has tags specific to voice application! Simple (and classic) example! !

More information

Migrating Legacy IVR Applications to VoiceXML with Voxeo The advantages of a 100% VoiceXML compliant platform

Migrating Legacy IVR Applications to VoiceXML with Voxeo The advantages of a 100% VoiceXML compliant platform Migrating Legacy IVR Applications to VoiceXML with Voxeo The advantages of a 100% VoiceXML compliant platform V O I C E O B J E C T S I S V O X E O N O W C X P TABLE OF CONTENTS 1 Introduction... 2 2 About...

More information

White paper. SIP An introduction

White paper. SIP An introduction White paper An introduction Table of contents 1 Introducing 3 2 How does it work? 3 3 Inside a normal call 4 4 DTMF sending commands in sip calls 6 5 Complex environments and higher security 6 6 Summary

More information

Avaya Aura Orchestration Designer

Avaya Aura Orchestration Designer Avaya Aura Orchestration Designer Avaya Aura Orchestration Designer is a unified service creation environment for faster, lower cost design and deployment of voice and multimedia applications and agent

More information

Internet Telephony Terminology

Internet Telephony Terminology Internet Telephony Terminology Understanding the business phone system world can be a daunting task to a lay person who just wants a system that serves his or her business needs. The purpose of this paper

More information

Specialty Answering Service. All rights reserved.

Specialty Answering Service. All rights reserved. 0 Contents 1 Introduction... 3 2 Technology... 5 2.1 VoiceXML Architecture... 6 2.2 Related Standards... 7 2.2.1 SRGS and SISR... 7 2.2.2 SSML... 7 2.2.3 PLS... 7 2.2.4 CCXML... 7 2.2.5 MSML, MSCML, MediaCTRL...

More information

Shared VRU. A Key Link in Your Customer Service Chain Kyle Shadday, Director, Voice Response Strategy

Shared VRU. A Key Link in Your Customer Service Chain Kyle Shadday, Director, Voice Response Strategy Shared VRU A Key Link in Your Customer Service Chain Kyle Shadday, Director, Voice Response Strategy Agenda Voice response within FIS Telephone banking today FIS shared VRU roadmap Speech recognition Unleash

More information

Developing Usable VoiceXML Applications

Developing Usable VoiceXML Applications Speech Technology Summit 2001 Developing Usable VoiceXML Applications Neil Bowers neilb@src.co.uk Contents About SRC Professional services company Methodology How we go about developing speech applications

More information

Oracle IVR Integrator

Oracle IVR Integrator Oracle IVR Integrator Concepts and Procedures Release 11i for Windows NT July 2001 Part No. A86103-03 1 Understanding Oracle IVR Integrator This topic group provides overviews of the application and its

More information

VoiceXML and VoIP. Architectural Elements of Next-Generation Telephone Services. RJ Auburn

VoiceXML and VoIP. Architectural Elements of Next-Generation Telephone Services. RJ Auburn VoiceXML and VoIP Architectural Elements of Next-Generation Telephone Services RJ Auburn Chief Network Architect, Voxeo Corporation Editor, CCXML Version 1.0, W3C Ken Rehor Software Architect, Nuance Communications

More information

A REVIEW ON DESIGN AND IMPLEMENTATION OF IVR SYSTEM USING ASTERISK

A REVIEW ON DESIGN AND IMPLEMENTATION OF IVR SYSTEM USING ASTERISK A REVIEW ON DESIGN AND IMPLEMENTATION OF IVR SYSTEM USING ASTERISK 1 SAMIR BORKAR, 2 SOFIA PILLAI 1 Student, Department of CSE, G.H.R.C.E. Nagpur, India 2 Assistant Professor, Department of CSE, G.H.R.C.E.

More information

Interavtive Voice Response System

Interavtive Voice Response System Interavtive Voice Response System Ms.Rashmi Janbandhu Rajiv Gandhi College Of Engineering & Reasearch rashmi.janbandhu@gmail.com M s.divya Jawle Rajiv Gandhi College Of Engineering & Reasearch djawl3e@gmail.com

More information

CHAPTER 4 Enhanced Automated Attendant

CHAPTER 4 Enhanced Automated Attendant CHAPTER 4 Enhanced Automated Attendant 4 This chapter shows you how to design, configure and implement a multi-level auto attendant, using TFB s Enhanced Automated Attendant (Auto Attendant for short).

More information

Cisco Healthcare Intelligent Contact Center

Cisco Healthcare Intelligent Contact Center Solution Overview Cisco Healthcare Intelligent Contact Center Cisco Healthcare Intelligent Contact Center provides a centralized approach to a virtualized contact center that can help improve communication

More information

CRM in the Contact Center and the Emergence of the Unified Agent Desktop

CRM in the Contact Center and the Emergence of the Unified Agent Desktop CRM in the Contact Center and the Emergence of the Unified Agent Desktop An excerpt from Datamonitor s recent report, DMTC2207 SUMMARY Publication Date: September 2008 Contact centers face ever-increasing

More information

Membering T M : A Conference Call Service with Speaker-Independent Name Dialing on AIN

Membering T M : A Conference Call Service with Speaker-Independent Name Dialing on AIN PAGE 30 Membering T M : A Conference Call Service with Speaker-Independent Name Dialing on AIN Sung-Joon Park, Kyung-Ae Jang, Jae-In Kim, Myoung-Wan Koo, Chu-Shik Jhon Service Development Laboratory, KT,

More information

Cisco Unified Contact Center Express 6.0

Cisco Unified Contact Center Express 6.0 Cisco Unified Contact Center Express 6.0 Cisco Unified Contact Center Express -- an integral component of the Cisco Unified Communications System -- offers an integrated, full-featured solution for managing

More information

Cisco Survivable Remote Site Telephony Version 7.0

Cisco Survivable Remote Site Telephony Version 7.0 Survivable Remote Site Telephony Version 7.0 Communications solutions unify voice, video, data, and mobile applications on fixed and mobile networks, enabling easy collaboration every time from any workspace.

More information

Contact Center Applications Market in India CY 2014

Contact Center Applications Market in India CY 2014 Contact Center Applications Market in India CY 2014 Customer Experience and Omnichannel Interaction Leading to High Adoption 9AC4-70 June 2015 Contents Section Slide Number Executive Summary 3 Market Definitions

More information

Avaya Media Processing Server 500

Avaya Media Processing Server 500 Avaya Media Processing Server 500 Set new standards for superior customer service Processing Server 500 can be a vital component of your self-service strategy. As a business evolves, increasing demands

More information

Management Summary for Unified Communications IP PBX

Management Summary for Unified Communications IP PBX Management Summary for Unified Communications IP PBX Prepared By for YOU of General: The Unified Communication Internet Protocol Private Branch Exchange (UCIPPBX) is a fully realised 3 rd generation office

More information

Testing IVR Systems White Paper

Testing IVR Systems White Paper Testing IVR Systems Document: Nexus8610 IVR 05-2005 Issue date: Author: Issued by: 26MAY2005 Franz Neeser Senior Product Manager Nexus Telecom AG, Switzerland We work to improve your network Abstract Interactive

More information

Contents. Specialty Answering Service. All rights reserved.

Contents. Specialty Answering Service. All rights reserved. Contents 1 Abstract... 2 2 What Exactly Is IVR Technology?... 3 3 How to Choose an IVR Provider... 4 3.1 Standard Features of IVR Providers... 4 3.2 Definitions... 4 3.3 IVR Service Providers... 5 3.3.1

More information

Contact Center Business Planning Guide

Contact Center Business Planning Guide Contact Center Business Planning Guide Speech Recognition Solutions Your organization s reputation is suffering as customers encounter frequent busy signals or long delays in reaching an agent which in

More information

simplifying communication through CARES solution

simplifying communication through CARES solution simplifying communication through CARES solution Implementation of Self-Service IVR Exceeds Customer Expectations IVR ACD Screen Pops CRM CTI Outbound Notification For more information, contact: Larry

More information

VoIP Conferencing. The latest in IP technologies deliver the next level of service innovation for better meetings. Global Collaboration Services

VoIP Conferencing. The latest in IP technologies deliver the next level of service innovation for better meetings. Global Collaboration Services Global Collaboration Services VoIP Conferencing The latest in IP technologies deliver the next level of service innovation for better meetings. ENERGIZE YOUR CONNECTIONS Table of Contents > > Contents...

More information

The Power of Retail Self-Service Solutions

The Power of Retail Self-Service Solutions White Paper The Power of Retail Self-Service Solutions January 2006 With the explosion of e-commerce and advances in computer-telephony integration (CTI), the telephone has re-emerged as a potent third

More information

VoiceXML Data Logging Overview

VoiceXML Data Logging Overview Data Logging Overview - Draft 0.3-20 August 2007 Page 1 Data Logging Overview Forum Tools Committee Draft 0.3-20 August 2007 Data Logging Overview - Draft 0.3-20 August 2007 Page 1 About the Forum: Founded

More information

This addendum provides responses to the vendor questions to the solicitation and services requested.

This addendum provides responses to the vendor questions to the solicitation and services requested. STATE OF DELAWARE DEPARTMENT OF LABOR DIVISION OF UNEMPLOYMENT INSURANCE February 9, 2015 TO: ALL OFFERORS FROM: SUBJECT: ADDENDUM TO REQUEST FOR PROPOSAL CONTRACT NO. DOL15061-IVR INTERACTIVE VOICE RESPONSE

More information

How To Use Voicexml On A Computer Or Phone (Windows)

How To Use Voicexml On A Computer Or Phone (Windows) Workshop Spoken Language Dialog Systems VoiceXML Rolf Schwitter schwitt@ics.mq.edu.au Macquarie University 2004 1 PhD Scholarship at Macquarie University A Natural Language Interface to a Logic Teaching

More information

Enhanced VoIP Based Virtual PC Troubleshooting

Enhanced VoIP Based Virtual PC Troubleshooting International Journal of Scientific & Engineering Research, Volume 3, Issue 4, April-2012 1 Enhanced VoIP Based Virtual PC Troubleshooting U.K.D.S.N. Dayananda, W.N.K.L. Abeyrathna, S.M.C.D. Samarakoon,

More information

Australian Standard. Interactive voice response systems user interface Speech recognition AS 5061 2008 AS 5061 2008

Australian Standard. Interactive voice response systems user interface Speech recognition AS 5061 2008 AS 5061 2008 AS 5061 2008 AS 5061 2008 Australian Standard Interactive voice response systems user interface Speech recognition This Australian Standard was prepared by Committee IT-022, Interactive Voice Response

More information

Description: Objective: Upon completing this course, the learner will be able to meet these overall objectives:

Description: Objective: Upon completing this course, the learner will be able to meet these overall objectives: Course: Deploying Cisco Unified Contact Center Express Software v9.0 Duration: 5 Day Hands-On Lab & Lecture Course Price: $ 3,695.00 Learning Credits: 37 Description: Deploying Cisco Unified Contact Center

More information

NEW. ProduCt information

NEW. ProduCt information NEW ProduCt information Your customers expect you to provide optimal service with maximum availability. We can help. ELSBETH Communication Manager (ECM) is the innovative solution for centralized management

More information