IVR Primer Introduction

Size: px
Start display at page:

Download "IVR Primer Introduction"

Transcription

1 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 tool also allows clients to swiftly drill down to the information they need. Users are more satisfied! Similar to a well-constructed sentence featuring nouns, verbs, and flowery adjectives, a well-constructed IVR system needs a voice board featuring echo cancellation, buffer size, pre-speech buffers, voice activity detection, and barge-in. The two sections in this primer Speech Basics and Putting Speech Together are intended to help you better understand the importance of voice boards when constructing IVR systems. Let s get started with Speech Basics. 1

2 Block One Speech Basics What is an IVR? In it s simplest terms, an IVR system connects users to applications through their telephone. Users can navigate using dual tone multi-frequency (DTMF)/touch-tone or speech. A good example of a speech-enabled IVR system is one that offers weather updates. After you dial the number, you are greeting by a voice prompting you for the city. If you say, San Francisco, the voice prompt then tells you the temperature in San Francisco. Quick and easy. With speech, users no longer need to struggle with the myriad of choices currently offered by touchtone (DTMF). Speech-activated responses cut down on the number of options. Speech recognition applications are expected to revitalize the market as enterprises replace and/or enhance their existing touch-tone IVR systems. Speech-based IVR systems lower expenses making a dramatic impact on the bottom line, as only the more complex calls require agent-intervention. What are IVRs used for? Access to weather updates was one example mentioned earlier. More examples are: Automated telephone ordering services, support desks, and order tracking; Access to traffic conditions, driving directions, , calendars, personal assistants, banking, and banking information; Voice dialing and voice mail messages; and Text-to-speech (TTS), automatic speech recognition (ASR) and IVR services. According to statistics from telecommunications industry analysts, the demand for IVRs is very promising. Both Global Information and Radicati Group project the IVR market to reach US$12B by 2005, and The Kelsey Group projects US$16B by What components do developers need to build an IVR system? IVRs consist of several components: voice boards to connect to the telecom network, speech technology for automated speech recognition and text-to-speech conversion, application software, and the servers and network infrastructure to run the system. Voi PIKA Technologies specializes in providing voice boards and associated software our primer focuses on the features you need from a vendor such as PIKA Technologies when you re putting speech together. Why are voice boards so important in the design of the IVR system? It is the responsibility of the voice board to get the clean audio buffers to the speech recognition engine for processing the speech as quickly as possible. The speech recognizer deciphers the content of the buffers, and returns the results to the application. PIKA Technologies hardware (voice boards) and software (API and drivers) media processing building blocks are designed to provide full duplex streaming audio to any third party speech recognizer engine. In any well-designed IVR, the following features are critical for overall performance and efficiency of the IVR system: Echo cancellation Optimized buffer sizes Pre-speech buffering Voice activity detection (VAD) Barge-in We ll now delve deeper into each these features in the section, Putting Speech Together. 2

3 Block Two Putting Speech Together Echo Cancellation What is Echo? Echo occurs when a portion of the transmitted signal is reflected back through the circuit to its point of origin. Why is echo bad? Echo will result in decreased performance of speech recognition accuracy since the incoming voice/speech is now corrupted with the echo of the prompt being played. Once the echo is removed, the speech recognition will have a cleaner representation of the actual word or phrase spoken. How does echo cancellation work? Echo cancellation is a digital signal processing (DSP) application. Echo cancellers operate by receiving two signals. The first is from source corrupted by echo in the signal. The second is a reference signal, part of which is reflected as echo. The reference signal is used to predict the echoed portions within the source signal. The predicted echo is then subtracted from the corrupted source signal, resulting in a much cleaner transmission. This technology is extremely import for cut-through and barge-in functionality, both of which allow users to speak over system voice prompts. We ve got echo cancellation! PIKA Technologies echo canceller is designed in conformance with G.168 recommendations. G.168 is a guideline for implementing line echo canceller systems. Implementation requires the use of a reference port that can be selected through PIKASetup in the PIKA API. The echo canceller API has a pause and resume feature, which increases the ASR barge-in performance. The echo canceller resumes from where it left off, using the learned adaptive filter coefficients, which means it requires less adaptation time and therefore produces cleaner audio. The API is very flexible as it allows the developer to set the tail length (up to 128ms), double-talk threshold, speech threshold, and suppression threshold of the echo canceller. Despite the fact that a suppression threshold is supported, it is generally not considered necessary since most speech recognition engines can handle a consistent background noise. In some cases, it may actually decrease the performance or accuracy of speech recognition if the beginning and/or end of soft-spoken words were below the set threshold. Buffer Size When an application starts to use audio functions, one of the first things to do is set the audio format to be used and, based on that, query the driver for the optimal buffer size. For optimal performance, the application should make sure it sends audio data in chunks, which are multiples of this buffer size. Depending on the application, buffer size can help or hinder system performance: Small buffers allow for a quicker transfer of data to the speech recognizer engine, but can also overwork the host central processing unit (CPU). Large buffers are easier on the host CPU, but increase latency and reduce systems performance. We ve got optimized buffer size! The flexible PIKA API allows you to set the buffer size so that you can optimize your system for your unique needs. 3

4 VAD The ability to detect voice at the DSP level, and then stream the audio buffers to the host-based speech recognizer engine, greatly improves system performance because it reduces the load on the host CPU. The voice activity detector (VAD) is located in the DSP. VAD is used to control (start and stop) a recording at the DSP level in order to filter out silence so that only relevant audible activity is provided to the application. When energy is detected on the port, the DSP notifies the application and immediately starts to stream the audio buffers to the application for processing. This reduces the amount of un-necessary audio buffers being sent to the application. There is a pre-speech buffer in the DSP that contains the first utterance, thereby eliminating the need of keeping a circular buffer at the application level. We ve got voice activity detection! Our VAD is based on energy detection and provides time stamping of the state changes between the presence of voice activity (start event) and the removal of voice activity (stop events). The PIKA VAD API allows you to configure the: Maximum threshold (level to start recording); Minimum threshold (level to stop recording); Activation debounce time; Deactivation debounce time; and Pre-speech buffer size. Figure 3: Voice activity detection 4

5 Pre-speech buffering The pre-speech buffer saves time by removing the need to keep track of the audio buffers to find out when speech started. We ve got pre-speech buffering! There is a pre-speech buffer in the DSP that contains the first utterance, thereby eliminating the need of keeping a circular buffer at the application level. As seen in the VAD diagram (figure 3), the speech detection is only triggered when the energy level reaches a specific point, the high threshold. The energy, or speech in this case, at the beginning of the word is not detected. To ensure that the data is not lost, the DSP is continuously recording 250 ms of speech into the pre-speech buffer. When the VAD is triggered, this pre-speech buffer will contain the beginning portion of the utterance. This buffer is sent to the application first, then the audio is streamed to the application until the VAD detects the end of speech. Barge-in The barge-in feature allows users to interrupt voice prompts. We ve got barge-in! The combination of echo cancellation and VAD on the DSP allows for barge-in/cut through. This means that the user can start talking while the prompt is playing. The echo canceller blocks the prompt from the recording port, giving a cleaner audio signal for recording. When the VAD detects speech, the prompt is stopped, and the audio buffers are streamed to the application for processing. The pre-speech buffer saves time by removing the need to keep track of the audio buffers to find out when speech started. The configurable audio buffer size allows for optimization of the system. All of the events and processes that are done on the DSP translate to less host CPU time, which means a faster IVR system. 5

6 Plug-in to the converged network. Expertly. PIKA Technologies reliable media processing building blocks deliver the features required to design a low-latency, highly efficient IVR system. The voice boards feature echo cancellation, optimized buffer sizes, pre-speech buffers, voice activity detection, and barge-in. PIKA Technologies delivers the voice boards and features you need to stream clean audio to any speech recognition engine on the market. In addition, when you chose PIKA Technologies, you are in the hands of technical experts. The PIKA Plus Advantage PIKA Technologies delivers the products and services you need to design voice and fax applications: high density digital, analog and IP boards; a market-leading granular API that works across our entire series of voice boards; powerful and feature-rich DSPs; competitive pricing; and a comprehensive support package that includes direct pre-sales support, free development support, and free ongoing maintenance support by our in-house technical support team. Get a cost effective total solution from a single source the PIKA Plus advantage. About PIKA Technologies PIKA Technologies reliable media processing building blocks connect computer systems to TDM and IP networks. Brand name companies design groundbreaking IVR, call center, custom PC/IP PBX, fax and logging solutions using PIKA Technologies building blocks. With two decades of experience in this industry, the company is recognized for earning strong relationships with its customers worldwide by delivering direct, expert technical support. Headquartered in Ottawa, ON, Canada, the company has ranked in The Branham300, an authoritative ranking of successful Canadian high tech firms, for four consecutive years. Visit or call for more information. This document is provided to you for informational purposes only and is believed to be accurate as of the date of its publication, and is subject to change without notice. PIKA Technologies Inc. assumes no responsibility for any errors or omissions in this document and shall have no obligation to you as a result of having made this document available to you or based upon the information it contains. PIKA is a registered trademark of PIKA Technologies Inc. AllOnBoard and AllOnHost are a trademarks of PIKA Technologies Inc. All other trademarks, product names and company names and/or logos cited herein, if any, are the property of their respective holders. Copyright PIKA Technologies Inc., All rights reserved. No part of this publication may be reproduced, stored in a retrieval system or transmitted, in any form or by any means, without the express written permission of PIKA Technologies Inc. 535 Legget Drive, Suite 400, Ottawa, Ontario, Canada, K2K 3B8 Tel: Fax: Visit sales@pikatech.com Copyright PIKA Technologies Inc., All rights reserved. No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, without the express written permission of PIKA Technologies Inc. This document is provided to you for informational purposes only and is believed to be accurate as of the date of its publication, and is subject to change without notice. PIKA Technologies Inc. Assumes no responsibility for any errors or omissions in this document and shall have no obligation to you as a result of having made this document available to you or based upon the information it contains. PIKA is a registered trademark and AllOnBoard and AllOnHost are trademarks of PIKA Technologies. LINUX is a trademark of Linus Tovalds. SUSE is a registered trademark of SUSE LINUX AG. RED HAT is a registered trademark of Red Hat, Inc. Microsoft and Windows are either registered trademarks or trademarks of Microsoft Corp. in the United States and/or other countries. 6

White Paper: Performance of Host-based Media Processing

White Paper: Performance of Host-based Media Processing White Paper: Performance of Host-based Media Processing The viability of host-based software in providing media processing capabilities continues to expand the possibilities for voice application development.

More information

Business Communications Solutions - A Paper Summary

Business Communications Solutions - A Paper Summary White Paper: Generation Y Communication Trends Harnessing the Growth of Instant Messaging in Delivering Business Communication Solutions Introduction This white paper describes the growing trend of using

More information

Choosing the Right Media Board for IVR Systems

Choosing the Right Media Board for IVR Systems Small Logo Choosing the Right Media Board for IVR Executive Summary Interactive Voice Response (IVR) is one of the most widely implemented, cost-effective, and useful technologies around. For example,

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

Application Note. Configuring Dialogic Host Media Processing Software Release 3.0 for Windows Software Licenses

Application Note. Configuring Dialogic Host Media Processing Software Release 3.0 for Windows Software Licenses Configuring Dialogic Host Media Processing Software Release 3.0 for Windows Software Licenses Configuring Dialogic Host Media Processing Software Release 3.0 for Windows Software Licenses Executive Summary

More information

PIKA HMP 3.0 High Level API Programmer's Guide

PIKA HMP 3.0 High Level API Programmer's Guide Copyright (c) 2011. All rights reserved. Table of Contents 1 Copyright Information 1 2 Contacting PIKA Technologies 2 3 Introduction 3 3.1 Purpose and Scope 4 3.2 Assumed Knowledge 4 3.3 Related Documentation

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

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

Speech Recognition of a Voice-Access Automotive Telematics. System using VoiceXML 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

More information

Digital T1/E1 PCI (HMP) Board

Digital T1/E1 PCI (HMP) Board Digital T1/E1 PCI (HMP) Board Copyright (c) 2010. All rights reserved. Digital T1/E1 PCI (HMP) Board Table of Contents Copyright Information 1 Contacting PIKA Technologies 2 Preface 3 Related Documentation

More information

Dialogic Diva V-1PRI, V-2PRI and V-4PRI (PCI/PCIe)

Dialogic Diva V-1PRI, V-2PRI and V-4PRI (PCI/PCIe) Dialogic Diva V-1PRI, V-2PRI and V-4PRI (PCI/PCIe) The Dialogic Diva V-1PRI ("Diva V-1PRI"), Dialogic Diva V-2PRI ("Diva V-2PRI") and Dialogic Diva V-4PRI ("Diva V-4PRI") boards are exceptionally powerful

More information

Avaya Call Recording Solution Configuration

Avaya Call Recording Solution Configuration Avaya Call Recording Solution Configuration Avaya IP Office Americas Headquarters OAISYS 7965 South Priest Drive, Suite 105 Tempe, AZ 85284 USA www.oaisys.com (480) 496-9040 CONTENTS 1 Introduction 2 Overview

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

White Paper: Voice Over IP Networks

White Paper: Voice Over IP Networks FREE FREE One One Hour Hour VoIPonline VoIPonline Seminar TM Seminar TM For additional information contact: Terry Shugart - tshugart@analogic.com http://www.analogic.com/cti TEL: 978-977-3000 FAX: 978-977-6813

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

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

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

RT Series IP PBX Products Introduction. All in one telephone system

RT Series IP PBX Products Introduction. All in one telephone system RT Series IP PBX Products Introduction All in one telephone system RT4 Series RT10 Series RT80 Series RT200 Series Real Tone Technologies Co.,Ltd 7014AB, Tianxia IC Industrial Park,Yiyuan Road Shenzhen

More information

Dialogic Diva SIPcontrol Software

Dialogic Diva SIPcontrol Software Dialogic Diva SIPcontrol Software converts Dialogic Diva Media Boards (Universal and V-Series) into SIP-enabled PSTN-IP gateways. The boards support a variety of TDM protocols and interfaces, ranging from

More information

Unified Messaging and Fax

Unified Messaging and Fax April 25, 2007 Telecom White Paper Presented By: Toshiba Telecommunications Systems Division www.telecom.toshiba.com Unified Messaging and Fax Toshiba s Stratagy Enterprise Server Overview: Unified Messaging

More information

Workforce Management IVR. A multi-service voice platform

Workforce Management IVR. A multi-service voice platform WFM Workforce Management IVR Information Sheet Introduction High Level Overview Features Solution Components Industries Applications Call Flows Reporting Implementation and Deployment About Syntellect

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

Dialogic Diva Analog Media Boards

Dialogic Diva Analog Media Boards Dialogic Diva Analog Media Boards The Dialogic Diva Analog Media Boards provide two, four, and eight ports and serve as an excellent communication platform, which scales from 2 to 64 channels (phone lines)

More information

Using Avaya Aura Messaging

Using Avaya Aura Messaging Using Avaya Aura Messaging 6.0 November 2011 2010 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information in this document is complete and accurate

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

X t e n d I V R. Handbook

X t e n d I V R. Handbook X t e n d I V R Handbook 2 3 Index What is Xtend IVR? What is Xtend IVR Developer Edition Standard Edition Installing Xtend IVR Using the Development Environment Running the First Script Configuring Xtend

More information

Hosted Fax Mail. Hosted Fax Mail. User Guide

Hosted Fax Mail. Hosted Fax Mail. User Guide Hosted Fax Mail Hosted Fax Mail User Guide Contents 1 About this Guide... 2 2 Hosted Fax Mail... 3 3 Getting Started... 4 3.1 Logging On to the Web Portal... 4 4 Web Portal Mailbox... 6 4.1 Checking Messages

More information

MultiDSLA. Measuring Network Performance. Malden Electronics Ltd

MultiDSLA. Measuring Network Performance. Malden Electronics Ltd MultiDSLA Measuring Network Performance Malden Electronics Ltd The Business Case for Network Performance Measurement MultiDSLA is a highly scalable solution for the measurement of network speech transmission

More information

IP Office 8.1 Using Voicemail Pro in Intuity Mode

IP Office 8.1 Using Voicemail Pro in Intuity Mode Using Voicemail Pro in Intuity Mode 15-601066 Issue 13a - (12 June 2012) 2012 AVAYA All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document

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

Crystal Innovation Solution 16 Moshe Shapira St., Rishon Le-Zion, 75704, Israel www.crystalrs.com. Crystal Gears

Crystal Innovation Solution 16 Moshe Shapira St., Rishon Le-Zion, 75704, Israel www.crystalrs.com. Crystal Gears Crystal Gears Why Crystal Gears - product Overview To ensure compliance with increased strict regulations, customer service quality, employee productivity, sales Verification and business intelligence,

More information

GUIDE TO PURCHASING A PHONE SYSTEM FOR YOUR CALL CENTER

GUIDE TO PURCHASING A PHONE SYSTEM FOR YOUR CALL CENTER GUIDE TO PURCHASING A PHONE SYSTEM FOR YOUR CALL CENTER A STEP-BY-STEP PRIMER TO HELP YOU SELECT THE RIGHT SOLUTION FOR YOUR SMALL TO MIDSIZE BUSINESS GUIDE TO PURCHASING THE RIGHT PHONE SYSTEM FOR YOUR

More information

Enterprise Messaging, Basic Voice Mail, and Embedded Voice Mail Card

Enterprise Messaging, Basic Voice Mail, and Embedded Voice Mail Card MITEL Enterprise Messaging, Basic Voice Mail, and Embedded Voice Mail Card User Guide Notice This guide is released by Mitel Networks Corporation and provides information necessary to use Mitel voice

More information

MITEL. 3300 IP Communications Platform

MITEL. 3300 IP Communications Platform MITEL 3300 IP Communications Platform The Promise of Convergence Delivered Communication is essential to business but is ultimately conducted from a personal level at the desktop and across the enterprise.

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

StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec

StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec StarWind iscsi SAN Software: Tape Drives Using StarWind and Symantec Backup Exec www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright 2008-2011. All rights reserved. No

More information

Intel NetStructure Host Media Processing Release 2.0 for Windows

Intel NetStructure Host Media Processing Release 2.0 for Windows Intel NetStructure Host Media Processing Release 2.0 for Windows Administration Guide December 2005 05-2483-002 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

PCI DSS compliance when recording calls in contact centres. Application note. Ian Colville, Product Manager, Aculab

PCI DSS compliance when recording calls in contact centres. Application note. Ian Colville, Product Manager, Aculab PCI DSS compliance when recording calls in contact centres Application note Ian Colville, Product Manager, Aculab APB0382 Issue 1 9 th October, 2014 Page 1 of 8 pages Table of contents Introduction...

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

Avaya Microsoft Lync Integration User Guide for IP Office

Avaya Microsoft Lync Integration User Guide for IP Office Avaya Microsoft Lync Integration User Guide for IP Office Release 8.1 02-604138, 01.01 December 2012 2012 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the

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

NEC 2400 IMS --- T1 PRI

NEC 2400 IMS --- T1 PRI UCC / Avaya one-x Speech Server Configuration Note 3610 Version F (05/08) UCC / Avaya one-x Speech NEC 2400 IMS --- T1 PRI T1 PRI/ISDN TRUNKS Central Office Digital Trunks UCC SPEECH ACCESS SERVER AVAYA

More information

Electra Elite and InfoSet are registered trademarks of NEC America, Inc.

Electra Elite and InfoSet are registered trademarks of NEC America, Inc. reserves the right to change the specifications, functions, or features, at any time, without notice. has prepared this document for the use by its employees and customers. The information contained herein

More information

Administering Communication Manager for Avaya one-x Agent

Administering Communication Manager for Avaya one-x Agent Administering Communication Manager for Avaya one-x Agent Release 2.0 November 2009 2009 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this

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

Adjusting Voice Quality

Adjusting Voice Quality Adjusting Voice Quality Electrical Characteristics This topic describes the electrical characteristics of analog voice and the factors affecting voice quality. Factors That Affect Voice Quality The following

More information

AA9604 Auto Attendant

AA9604 Auto Attendant AA9604 Auto Attendant Operation Manual 10AA96V4M.2.13.EN1 DSG, DSG logo, AA9604, VL880, VL880L, IM1200, IM2400, IL1000 and IL5000 are trademarks of DSG Technology. Windows and Outlook Express are trademarks

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

E I M S - Interactive Voice Response System

E I M S - Interactive Voice Response System E I M S - Interactive Voice Response System Redox Technologies is a pioneer in computer telephony development and IVR service bureaus. We have developed, implemented and maintain no. of applications currently

More information

3300 IP Communications Platform Release 7.1 License Information

3300 IP Communications Platform Release 7.1 License Information 3300 IP Communications Platform Release 7.1 License Information Technology Primer December 2006 Copyright Copyright 2006 Mitel Networks Corporation. This document is unpublished and the following notice

More information

In addition to our VoiceDirector hardware products, the following SIP broadband devices are also compatible with VoiceDirector:

In addition to our VoiceDirector hardware products, the following SIP broadband devices are also compatible with VoiceDirector: Device Compatibility Along with the full range of VoiceDirector devices we offer, a number of other SIP telephony products are compatible with the VoiceDirector corporate calling solution In addition to

More information

VoIP 101. E911-Enhanced 911- Used for providing emergency service on cellular and internet voice calls.

VoIP 101. E911-Enhanced 911- Used for providing emergency service on cellular and internet voice calls. If you ve been researching phone systems for awhile, you ve probably heard the term VoIP. What s the definition? Do you need certain hardware for it to work? There are a few questions that should be answered

More information

CMG 7.5. Quick Guide InConference. Makes your extension a conference room. Rev A4

CMG 7.5. Quick Guide InConference. Makes your extension a conference room. Rev A4 Quick Guide InConference Makes your extension a conference room Rev A4 2013 Aastra Technologies Limited. All rights reserved. This document contains proprietary information, which is protected by copyright.

More information

Business Communications Solutions

Business Communications Solutions Business Communications Solutions Business Communications Goals: Productivity and Efficiency Organizations generally have two goals in pursuing new business communications solutions and services: Increase

More information

Intel NetStructure Host Media Processing Software Release 1.0 for the Windows * Operating System

Intel NetStructure Host Media Processing Software Release 1.0 for the Windows * Operating System Datasheet Intel NetStructure Host Media Processing Software Release 1.0 for the Windows * Operating System Media Processing Software That Can Be Used To Build Cost-Effective IP Media Servers Features Benefits

More information

IP Office Platform. Avaya IP Office Platform Embedded Voicemail User Guide (IP Office Mode) 15-604067 Issue 15b - (22 January 2015)

IP Office Platform. Avaya IP Office Platform Embedded Voicemail User Guide (IP Office Mode) 15-604067 Issue 15b - (22 January 2015) Avaya Embedded Voicemail User Guide (IP Office Mode) 15-604067 Issue 15b - (22 January 2015) 2015 AVAYA All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information

More information

Cisco ATA 186 Analog Telephone Adaptor

Cisco ATA 186 Analog Telephone Adaptor Data Sheet Cisco ATA 186 Analog Telephone Adaptor The Cisco ATA 186 Analog Telephone Adaptor is a handset-to-ethernet adaptor that turns traditional telephone devices into IP devices. Customers can take

More information

Application Note. Using Ethereal to Debug SIP and RTP on Dialogic Voice over IP (VoIP) Products

Application Note. Using Ethereal to Debug SIP and RTP on Dialogic Voice over IP (VoIP) Products Application Note Using Ethereal to Debug SIP and RTP on Dialogic Voice over IP (VoIP) Products Application Note Using Ethereal to Debug SIP and RTP on Dialogic Voice over IP (VoIP) Products Executive Summary

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

Avaya Engagement Assistant Web Portal Administration

Avaya Engagement Assistant Web Portal Administration Avaya Engagement Assistant Web Portal Administration Release 3.0 April 2015 2014-2015, Avaya, Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information in

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

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

Application Note. Configuring Dialogic Host Media Processing Software Release 3.1LIN Software Licenses

Application Note. Configuring Dialogic Host Media Processing Software Release 3.1LIN Software Licenses Application Note Configuring Dialogic Host Media Processing Software Release 3.1LIN Software Licenses Application Note Configuring Dialogic Host Media Processing Software Release 3.1LIN Software Licenses

More information

NuPoint Unified Messaging

NuPoint Unified Messaging MITEL NuPoint Unified Messaging User Guide Release 5.0 NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Networks Corporation (MITEL

More information

Allworx Queuing and Automated Call Distribution Guide (Release 7.2.3.x)

Allworx Queuing and Automated Call Distribution Guide (Release 7.2.3.x) Allworx Queuing and Automated Call Distribution Guide (Release 7.2.3.x) No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic,

More information

INTRODUCTION 3 XYZ EXAMPLE 3 CONNECTING THE FAXFINDER TO THE IP OFFICE SWITCH 4 CONFIGURING THE FAXFINDER FOR INTER-OPERATION -- THE XYZ EXAMPLE 4

INTRODUCTION 3 XYZ EXAMPLE 3 CONNECTING THE FAXFINDER TO THE IP OFFICE SWITCH 4 CONFIGURING THE FAXFINDER FOR INTER-OPERATION -- THE XYZ EXAMPLE 4 FaxFinder V.34 Fax Server Reference Guide for Inter-Operation with Avaya IP Office Contents INTRODUCTION 3 XYZ EXAMPLE 3 CONNECTING THE FAXFINDER TO THE IP OFFICE SWITCH 4 CONFIGURING THE FAXFINDER FOR

More information

Using Multiple Appearance Directory Number - Single Call Appearance with Polycom Phones

Using Multiple Appearance Directory Number - Single Call Appearance with Polycom Phones Using Multiple Appearance Directory Number - Single Call Appearance with Polycom Phones Feature Profile 83102 Multiple Appearance Directory Number Single Call Appearance (MADN-SCA) enables multiple phone

More information

Toll-bypass Long Distance Calling... 1. What Is VOIP?... 2. Immediate Cost Savings... 3. Applications... 3. Business Quality Voice...

Toll-bypass Long Distance Calling... 1. What Is VOIP?... 2. Immediate Cost Savings... 3. Applications... 3. Business Quality Voice... telephony internet access remote access modems Content Toll-bypass Long Distance Calling... 1 What Is VOIP?... 2 That Was Then... This is Now... Immediate Cost Savings... 3 Applications... 3 Office-to-office

More information

Application Notes. Contents. Overview. Introduction. Echo in Voice over IP Systems VoIP Performance Management

Application Notes. Contents. Overview. Introduction. Echo in Voice over IP Systems VoIP Performance Management Application Notes Title Series Echo in Voice over IP Systems VoIP Performance Management Date January 2006 Overview This application note describes why echo occurs, what effects it has on voice quality,

More information

HD Voice Conference IP Phone with PSTN

HD Voice Conference IP Phone with PSTN Key Features Highlights Supports 3 SIP voice lines Supports HD voice 28 x 64 pixel LCD display with ivory backlight 3-way conferencing Echo cancellation, hi-fi technology of wideband voice High-definition

More information

The MOST Affordable HD Video Conferencing. Conferencing for Enterprises, Conferencing for SMBs

The MOST Affordable HD Video Conferencing. Conferencing for Enterprises, Conferencing for SMBs The MOST Affordable HD Video Conferencing Video conferencing has become an increasingly popular service, being widely used by enterprises, organizations and individuals. Thanks to the enormous growth in

More information

TESTING REPORT: Callware's Callegra

TESTING REPORT: Callware's Callegra TESTING REPORT: Callware's Callegra Executive Summary: The Converged Communication Industry s Premier Testing Service Date of Tests: October, 2002 Vendor: Callware Technologies, Inc. 8911 South Sandy Parkway

More information

Hosted IVR and Contact Center Solutions: The Compelling Case for Adoption

Hosted IVR and Contact Center Solutions: The Compelling Case for Adoption Hosted IVR and Contact Center Solutions: The Compelling Case for Adoption A Syntellect, Inc. White Paper 16610 N. Black Canyon Hwy, Suite 100 Phoenix, Arizona 85053 602.789.2800 www.syntellect.com Revised

More information

Building Conferencing Applications Using Intel NetStructure Host Media Processing Software

Building Conferencing Applications Using Intel NetStructure Host Media Processing Software Application Note Building Conferencing Applications Using Intel NetStructure Host Media Processing Software Intel in Communications Building Conferencing Applications Using Intel NetStructure Host Media

More information

User Guide for the Cisco Unity Connection Phone Interface (Release 8.x)

User Guide for the Cisco Unity Connection Phone Interface (Release 8.x) User Guide for the Cisco Unity Connection Phone Interface (Release 8.x) First Published: February 02, 2010 Last Modified: November 16, 2010 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive

More information

4. H.323 Components. VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19

4. H.323 Components. VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19 4. H.323 Components VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19 4.1 H.323 Terminals (1/2)...3 4.1 H.323 Terminals (2/2)...4 4.1.1 The software IP phone (1/2)...5 4.1.1 The software

More information

BUYER S GUIDE IP COMMUNICATIONS BUYER S GUIDE

BUYER S GUIDE IP COMMUNICATIONS BUYER S GUIDE BUYER S GUIDE IP COMMUNICATIONS BUYER S GUIDE Realizing the Proven Value of Unified Communications REALIZING THE PROVEN VALUE OF UNIFIED COMMUNICATIONS What you will learn in this guide: Times are Changing

More information

Verizon Business National Unified Messaging Service Enhanced Service Guide

Verizon Business National Unified Messaging Service Enhanced Service Guide USER GUIDE Voice Verizon Business National Unified Messaging Service Enhanced Service Guide What Is Unified Messaging? Verizon Business National Unified Messaging Service is an interactive voicemail system

More information

Configuration Notes 290

Configuration Notes 290 Configuring Mediatrix 41xx FXS Gateway with the Asterisk IP PBX System June 22, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 About Mediatrix 41xx Series FXS Gateways...

More information

Emerald ICE Digital Key Telephone System

Emerald ICE Digital Key Telephone System This manual is provided to you by ElectSys; a certified dealer that installs and supports Tadiran systems. Call us at 717-665-2141 or visit www.electsys.biz TM Emerald ICE Digital Key Telephone System

More information

Getting Started with Loyola s New Voicemail System

Getting Started with Loyola s New Voicemail System Getting Started with Loyola s New Voicemail System Loyola Moves to Microsoft This guide provides an introduction to Loyola s new unified messaging voicemail system, which went live in March 2014. Additional

More information

Choosing a Dialogic Product Option for Creating a PSTN-HMP Interface

Choosing a Dialogic Product Option for Creating a PSTN-HMP Interface Whitepaper PSTN-HMP Interface Options Choosing a Dialogic Product Option for Creating a PSTN-HMP Interface Environment Helps Determine Product Choice for TDM-IP Hybrid Media Server System with Dialogic

More information

ReadySHARE Printer. Easy to Set Up: Instructions. 350 East Plumeria Drive San Jose, CA 95134 USA

ReadySHARE Printer. Easy to Set Up: Instructions. 350 East Plumeria Drive San Jose, CA 95134 USA Easy to Set Up: Instructions 350 East Plumeria Drive San Jose, CA 95134 USA October 2011 2011 NETGEAR, Inc. All rights reserved No part of this publication may be reproduced, transmitted, transcribed,

More information

Reference Guide for Inter-Operation with Avaya IP Office INTRODUCTION 3 XYZ EXAMPLE 3 CONNECTING THE FAXFINDER TO THE IP OFFICE SWITCH 4

Reference Guide for Inter-Operation with Avaya IP Office INTRODUCTION 3 XYZ EXAMPLE 3 CONNECTING THE FAXFINDER TO THE IP OFFICE SWITCH 4 FaxFinder V.34 Fax Server Reference Guide for Inter-Operation with Avaya IP Office Contents INTRODUCTION 3 XYZ EXAMPLE 3 CONNECTING THE FAXFINDER TO THE IP OFFICE SWITCH 4 CONFIGURING THE FAXFINDER FOR

More information

Welcome to Cogeco Business Digital Phone Service

Welcome to Cogeco Business Digital Phone Service Welcome Welcome to Cogeco Business Digital Phone Service Congratulations on choosing Cogeco Business Digital Phone Service. 1 Your decision to subscribe to our digital quality phone service is a smart

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for LumenVox Automated Speech Recognizer, LumenVox Text-to-Speech Server and Call Progress Analysis with Avaya Aura Experience Portal Issue

More information

Dialplate Receptionist Console Version 3.0.0.3

Dialplate Receptionist Console Version 3.0.0.3 En Dialplate Receptionist Console Version 3.0.0.3 Configuration Manual TABLE OF CONTENTS Table of contents... 2 Accessing configuration panel... 2 General panel... 4 Account list... 4 Tabs... 5 Behaviour...

More information

Unified Messaging Solutions from Captaris. Access Your Messages Anytime, Anywhere

Unified Messaging Solutions from Captaris. Access Your Messages Anytime, Anywhere Unified Messaging Solutions from Captaris Access Your Messages Anytime, Anywhere CallXpress allows us to be more responsive to our customers, says Smith. And that gives us the competitive advantage we

More information

Host Media Processing for Windows Operating Systems Reference Design Guide

Host Media Processing for Windows Operating Systems Reference Design Guide Reference Design Host Media Processing for Windows Operating Systems Reference Design Guide Intel in Communications Host Media Processing - Reference Design Guide Contents About This Publication........................................................

More information

IPitomy User Guide Business Phones Conferencing Voice Mail

IPitomy User Guide Business Phones Conferencing Voice Mail IPitomy User Guide Business Phones Conferencing Voice Mail Using Your Telephone Your new telephone is a state of the art IP Telephone instrument. It is manufactured by Aastra, the manufacturers of Northern

More information

ehealth and VoIP Overview

ehealth and VoIP Overview ehealth and VoIP Overview Voice over IP (VoIP) configurations can be very complex. Your network could contain a variety of devices, applications, and configuration capabilities to support voice traffic.

More information

OAISYS and ShoreTel: Call Recording Solution Configuration. An OAISYS White Paper

OAISYS and ShoreTel: Call Recording Solution Configuration. An OAISYS White Paper OAISYS and ShoreTel: Call Recording Solution Configuration An OAISYS White Paper Table of Contents Introduction... 3 ShoreTel Networks... 4 Trunk Side Recording... 4 Station Side Recording... 6 Active

More information

PIKA GrandPrix 1.3 Programmer's Guide

PIKA GrandPrix 1.3 Programmer's Guide PIKA GrandPrix 1.3 Programmer's Guide Copyright (c) 2007. All rights reserved. Table of Contents Copyright Information 1 Contacting PIKA Technologies 2 Introduction 3 Purpose and Scope 4 Assumed Knowledge

More information

STATE OF THE IVR: INDUSTRY EXPERTS WEIGH IN Insights and best practices for getting the most out of your IVR interactions.

STATE OF THE IVR: INDUSTRY EXPERTS WEIGH IN Insights and best practices for getting the most out of your IVR interactions. tech line / nov 2013 STATE OF THE IVR: INDUSTRY EXPERTS WEIGH IN Insights and best practices for getting the most out of your IVR interactions. By Ken Barton, Strategic Contact Inc. Pipeline Articles www.contactcenterpipeline.com

More information

Audio and Web Conferencing

Audio and Web Conferencing DATA SHEET MITEL Audio and Web Conferencing Simple, Cost-effective Audio and Web Conferencing Mitel Audio and Web Conferencing (AWC) is a simple, cost-effective and scalable audio and web conferencing

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

VoIP from A to Z. NAEO 2009 Conference Cancun, Mexico

VoIP from A to Z. NAEO 2009 Conference Cancun, Mexico VoIP from A to Z NAEO 2009 Conference Cancun, Mexico VoIP glossary What is VoIP? Bandwidth Signaling Codecs Quality of Service (QoS) What is VoIP? Voice over Internet Protocol (VoIP) is the method of transmitting

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

Traditional Telephony

Traditional Telephony Traditional Telephony Basic Components of a Telephony Network This topic introduces the components of traditional telephony networks. Basic Components of a Telephony Network 3 A number of components must

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