<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WombatNation &#187; VoiceXML</title>
	<atom:link href="http://www.wombatnation.com/category/speech/voicexml/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wombatnation.com</link>
	<description>Speech Applications, MySQL, Python, Soccer, Java, Beer and Incinerating Toilets</description>
	<lastBuildDate>Mon, 30 Jan 2012 08:10:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Tweeting by Phone with PhoneBlogger</title>
		<link>http://www.wombatnation.com/2011/03/tweeting-by-phone-with-phoneblogger</link>
		<comments>http://www.wombatnation.com/2011/03/tweeting-by-phone-with-phoneblogger#comments</comments>
		<pubDate>Sun, 20 Mar 2011 23:06:52 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Google App Engine]]></category>
		<category><![CDATA[PhoneBlogger]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/?p=905</guid>
		<description><![CDATA[In late 2002, I thought it would be cool to build an application that allowed you to blog by phone. Tools, libraries and hosted services were a bit more limited back then, but after a few months of learning, coding and debugging, I managed to release the first version of PhoneBlogger in January 2003. Along [...]]]></description>
			<content:encoded><![CDATA[<p>In late 2002, I thought it would be cool to build an application that allowed you to blog by phone. Tools, libraries and hosted services were a bit more limited back then, but after a few months of learning, coding and debugging, I managed to release the first version of <a href="http://www.wombatnation.com/phoneblogger/">PhoneBlogger</a> in January 2003. Along the way, I learned a lot about <a href="http://python.org">Python</a>, <a href="http://voicexml.org">VoiceXML</a>, JavaScript, XML-RPC, audio encoding, shared web hosting and command line tools for Linux.</p>

<p>Fast forward nearly ten years and not only have the tools and libraries come a long way, but there are many more free or inexpensive hosted services that simplify building a tool/service like PhoneBlogger. Instead of hosting the application code on a shared hosting site, I can now build and deploy on <a href="http://code.google.com/appengine/">Google App Engine</a>. Though scalability is not an issue for my personal use of PhoneBlogger, if it were turned into a public service, App Engine would make scaling much simpler and more economical. App Engine also makes deployment a snap, though with a small amount of work, so would <a href="http://fabfile.org/">Fabric</a>. For my PhoneBlogger rewrite, I decided to use App Engine.</p>

<p>In the original version of PhoneBlogger, I coded a bunch of static VoiceXML and JavaScript for managing the telephone interaction with a caller. At the time, three of the most prominent services for VoiceXML developers were <a href="http://studio.tellme.com">Tellme</a> (now owned by Microsoft), <a href="http://cafe.bevocal.com">BeVocal</a> (now owned by Nuance) and <a href="http://evolution.voxeo.com">Voxeo</a> (still independent). I had to write slightly different code for Tellme and BeVocal, but the differences weren&#8217;t that significant. I think it would have been pretty simple to port to Voxeo, as well. Improved support of VoiceXML 2 would now likely allow me to use the same code on each platform.</p>

<p>While VoiceXML is still a great option for building speech apps, a couple of new services bring you simple APIs for building speech or DTMF (touchtone) applications, at the cost of portability. This time around I&#8217;ve started with <a href="http://twilio.com">Twilio</a>. I very quickly turned a Python/GAE example from the Twilio website into a DTMF app for tweeting by phone. Although speech recognition allows you to build much more complex and natural applications, many simple applications can be built quickly and easily with just support for pressing keys to provide input. PhoneBlogger falls into that category, for now.</p>

<p>One very convenient thing about Twilio is that I can use their platform to capture and host recordings in a format that is simple to play back in a web browser. If I were really concerned about longevity of the recordings I could easily retrieve them and store them elsewhere, but I&#8217;m okay with keeping them on Twilio servers for now. That&#8217;s an easy enhancement to add later. The biggest downside for tweeting the Twilio links is that the Twilio recording URLs are ginormous. Fortunately, the goo.gl URL shortener made quick work of that problem.</p>

<p>I&#8217;m also going to take a look at porting my code to <a href="http://tropo.com">Tropo</a>, which is a service offered by Voxeo. Tropo is built on Voxeo&#8217;s Prophecy platform and offers speech recognition as an option.</p>

<p>I decided to begin the rewrite by first supporting tweeting by phone. Twitter offers a great API, which is made even simpler by libraries like Tweepy. I highly recommend first checking out the OAuth support in any library for Twitter you might consider using. OAuth can be a complex beast, but libraries like <a href="http://joshthecoder.github.com/tweepy/">Tweepy</a> make it almost trivial.</p>

<p>The original PhoneBlogger source code and a couple iterations of it are <a href="http://sourceforge.net/projects/phoneblogger/">available on SourceForge</a>. I wasn&#8217;t particularly interested in learning about CVS at the time, so I just uploaded tarballs of all the code. While SourceForge has improved a lot, I&#8217;ve become more of a fan of GitHub. Google Code, LaunchPad and BitBucket are also great options. I started using LaunchPad when working on a <a href="https://launchpad.net/gearmanij">Java library for Gearman</a>, but then set up a <a href="https://github.com/RobertStewart">couple of repos on GitHub</a> when I started working on <a href="https://github.com/log4mongo/log4mongo-java">Log4mongo-Java</a>. I&#8217;m much happier with Git, Bazaar and Mercurial than Subversion and CVS (Caveman Versioning System). I&#8217;ve already started posting code for the new <a href="https://github.com/RobertStewart/phoneblogger">phoneblogger project on GitHub</a>.</p>

<p>As of now, the new version of PhoneBlogger supports tweeting by phone. All the code is on GitHub, along with a README file with the basic steps to set it up for yourself. In an upcoming blog post I&#8217;ll walk through those steps in a little more detail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2011/03/tweeting-by-phone-with-phoneblogger/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Gartner&#8217;s IVR Magic Quadrant</title>
		<link>http://www.wombatnation.com/2008/04/gartners-ivr-magic-quadrant</link>
		<comments>http://www.wombatnation.com/2008/04/gartners-ivr-magic-quadrant#comments</comments>
		<pubDate>Wed, 09 Apr 2008 15:41:06 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2008/04/gartners-ivr-magic-quadrant</guid>
		<description><![CDATA[An article in Speech Technology magazine reports that in the most recent update to Gartner&#8217;s Magic Quadrant for IVRs, Microsoft Speech Server and Nuance Voice Portal got dropped. The disappearance of NVP is no surprise, since Nuance announced at their Conversations conference over two years ago that they would no longer enhance it. Microsoft moved [...]]]></description>
			<content:encoded><![CDATA[<p>An <a href="http://www.speechtechmag.com/Articles/News/News-Feature/-Microsoft-and-Nuance-Get-Muted-By-Gartner-Magic-Quadrant-for-IVR-41470.aspx">article in Speech Technology magazine reports that in the most recent update to Gartner&#8217;s Magic Quadrant for IVRs</a>, <a href="http://www.microsoft.com/speech/">Microsoft Speech Server</a> and Nuance Voice Portal got dropped. The disappearance of NVP is no surprise, since Nuance announced at their Conversations conference over two years ago that they would no longer enhance it.</p>

<p>Microsoft moved Speech Server into Office Communications Server last year, and really doesn&#8217;t seem to be promoting it as  a standalone product, even though it can still be installed separately. Although I see virtually no push by Microsoft, or even their partners, to sell Speech Server into large contact centers, I&#8217;m still a little surprised Gartner dropped them.</p>

<p>We&#8217;ve been doing some testing on Speech Server at <a href="http://www.voxify.com/">Voxify</a>, and overall it works quite well. Getting it to work with our Asterisk-based PBX was a nightmare, but otherwise the install went pretty smoothly. Recognition performance using Microsoft&#8217;s ASR is generally similar to <a href="http://www.nuance.com/">Nuance</a> OSR, though recognition is very slow when doing nbest recognition for even medium sized values of n. Microsoft&#8217;s fairly faithful compliance with the VoiceXML standard (we find issues with every VXML browser vendor we have worked with) was another very pleasant surprise. The best surprise was the licensing costs. It is amazingly inexpensive considering the quantity and quality of features it includes.</p>

<p>One of my biggest concerns about Speech Server is that activity in discussion forums and blogs regarding the product has dwindled dramatically (at least in the places I have looked) over the last year. Without Microsoft pushing Speech Server, I think there will need to be pretty strong community support for it to gain a foothold. It would be really too bad if it ends up getting buried in the unified communication product line at Microsoft.</p>

<p>The rest of the report contained no surprises. <a href="http://www.genesyslab.com/">Genesys</a> is listed as the clear leader, and that is definitely what I have seen in the market. Acquiring VoiceGenie was a brilliant move on their part, and they have very good offerings for both enterprises and large VXML hosting providers. Nonetheless, there continue to be interesting developments at <a href="http://www.nortel.com/">Nortel</a>, <a href="http://www.avaya.com/">Avaya</a> and <a href="http://www.voxeo.com/">Voxeo</a>, among others.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2008/04/gartners-ivr-magic-quadrant/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AVIOS Speech App Contest for Students</title>
		<link>http://www.wombatnation.com/2007/09/avios-speech-app-contest-for-students</link>
		<comments>http://www.wombatnation.com/2007/09/avios-speech-app-contest-for-students#comments</comments>
		<pubDate>Sun, 23 Sep 2007 07:06:50 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2007/09/avios-speech-app-contest-for-students</guid>
		<description><![CDATA[AVIOS is having their second speech app building contest for student teams. &#8220;Cash and/or equipment prizes valued at over $1000 will be awarded to teams of student programmers who design and create applications judged by industry experts to be the most robust, useful, creative, innovative, and user friendly.&#8221; The finished application must be submitted by [...]]]></description>
			<content:encoded><![CDATA[<p><acronym name="Applied Voice Input/Output Society">AVIOS</acronym> is having their second <a href="http://avios.com/contest.htm">speech app building contest for student teams</a>. &#8220;Cash and/or equipment prizes valued at over $1000 will be awarded to teams of student programmers who design and create applications judged by industry experts to be the most robust, useful, creative, innovative, and user friendly.&#8221; The finished application must be submitted by January 31, 2008.</p>

<p>Although the application must at least support speech input or output, students are encouraged to develop multi-modal apps. Many development environments are approved for use in building and running your application. If you are looking to get some long term useful experience out of this exercise, I strongly recommend that you build a VoiceXML app and host it one of the platforms like BeVocal, TellMe, etc. While working with a downloadable environment like Voxeo&#8217;s Prophecy would be highly educational, you&#8217;ll end up spending a lot of time dealing with stuff that the hosted platforms take care of for you. Even better would be to use a tool that dynamically generates VoiceXML, but there aren&#8217;t a lot of free tools available that do that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2007/09/avios-speech-app-contest-for-students/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TMCnet Blog Post about Voxify</title>
		<link>http://www.wombatnation.com/2007/06/tmcnet-blog-post-about-voxify</link>
		<comments>http://www.wombatnation.com/2007/06/tmcnet-blog-post-about-voxify#comments</comments>
		<pubDate>Thu, 14 Jun 2007 16:16:05 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2007/06/tmcnet-blog-post-about-voxify</guid>
		<description><![CDATA[Patrick Barnard wrote a very nice post about Voxify on his Making Contact TMCnet blog after speaking with the heads of our sales and marketing groups. Patrick&#8217;s post aptly summarizes the nature of the hosted speech applications that Voxify provides. For the sake of credibility regarding real world speech application implementations, it&#8217;s important to note [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.tmcnet.com/makingcontact/voxifys-automated-agents-never-sleep-and-never-get-tired.asp">Patrick Barnard wrote a very nice post about Voxify</a> on his <a href="http://blog.tmcnet.com/makingcontact/">Making Contact TMCnet blog</a> after speaking with the heads of our sales and marketing groups. Patrick&#8217;s post aptly summarizes the nature of the hosted speech applications that <a href="http://www.voxify.com/">Voxify</a> provides.</p>

<p>For the sake of credibility regarding real world speech application implementations, it&#8217;s important to note that we don&#8217;t claim we can implement every imaginable integrated application in less than eight weeks. Patrick doesn&#8217;t say that either, but I can see how some people might jump to that conclusion. Some applications require the development of very complex call flows and extremely technically challenging integrations to back end systems. I think we still deploy these complex kinds of applications surprisingly quickly, though.</p>

<p>The telephony integration for a hosted speech application can add time, too, if a lot of changes need to be made to existing circuits or if new circuits need to be provisioned. The telecom companies have gotten a lot better about this, but it can still take them 1-2 weeks to provision a new line. Fortunately, we&#8217;re able to catch most of these situations up front and get all of the telecom work queued up early.</p>

<p>But, Voxify absolutely can design, develop and deploy integrated speech applications in less than eight weeks. We&#8217;ve done that for several clients, and we&#8217;ve made some changes to our platform that will enable us to deliver that fast much more often in the future.</p>

<p>Part of the reason we can develop speech applications so quickly is that we have the experience from developing a lot of applications. In addition, we took the time, either during those deployments or soon after, to capture that experience in our core platform or in reusable libraries. We now have a very powerful platform and a strong set of reusable horizontal (e.g., geographical location, billing and shipping address, credit card information, etc.) and vertical (e.g., flight info, hotel reservation, prescription refill, order status, etc.) libraries. We also have a very efficient set of deployment processes that we have honed during all of our previous deployments. And, oh yeah, there are a bunch of smart people in our office who continually amaze me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2007/06/tmcnet-blog-post-about-voxify/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SoccerPhone 2007</title>
		<link>http://www.wombatnation.com/2007/04/soccerphone-2007</link>
		<comments>http://www.wombatnation.com/2007/04/soccerphone-2007#comments</comments>
		<pubDate>Thu, 12 Apr 2007 06:56:34 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Soccer]]></category>
		<category><![CDATA[SoccerPhone]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2007/04/soccerphone-2007</guid>
		<description><![CDATA[SoccerPhone is a speech application I wrote about five years ago so I could get live updates on Major League Soccer scores whenever I was away from an Internet connection. I wrote the application in VoiceXML, JavaScript, and Python. Since SoccerPhone gathers the live data by scraping information from the HTML scoreboard page on the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wombatnation.com/soccer/">SoccerPhone</a> is a speech application I wrote about five years ago so I could get live updates on <a href="http://web.mlsnet.com/scoreboard/">Major League Soccer scores</a> whenever I was away from an Internet connection. I wrote the application in VoiceXML, JavaScript, and Python. Since SoccerPhone gathers the live data by scraping information from the HTML scoreboard page on the MLS website, I often have to update my code when the MLS website changes each year. Fortunately, this year&#8217;s change was fairly minor.</p>

<ol>
  <li>Call 1-877-33-VOCAL (877-338-6225)</li>
  <li>When asked for your PIN, enter or say 5425 (5425 = KICK)</li>
  <li>When asked for your userid, enter or say 6575425 (6575425 = MLSKICK)</li>
  <li>After you hear me say &#8220;Welcome to SoccerPhone&#8221;, you can say an MLS
      team name, such as &#8220;Houston Dynamo&#8221;, or say &#8220;all teams&#8221;.</li>
</ol>

<p>Since SoccerPhone lets you request this week&#8217;s match results for a team by saying the team&#8217;s name, I also have to update the GRXML grammars when new teams are added. While I could dynamically generate grammars from the team names that the app extracts from the MLS website, it&#8217;s not that big of a deal to manually maintain the grammars. Also, manually coding them allows me to tune the gramars for better recognition rates.</p>

<p>If you&#8217;ve call the app before, you&#8217;ll be disappointed to hear that I am using the same lame voice talent, i.e., me. On the good side, though, I re-recorded a bunch of the prompts using <a href="http://audacity.sourceforge.net/">Audacity</a>. I also eliminated a little more of the <acronym title="Text To Speech">TTS</acronym> by adding additional recordings. I really should take advantage of the great recording studio we have at <a href="http://www.voxify.com/">Voxify</a>, but then I would feel obligated to use a real voice talent.</p>

<p>I haven&#8217;t updated the code at the SoccerPhone SourceForge project site, yet. But I will get to that soon. I got sidetracked by looking into converting the CVS repository to Subversion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2007/04/soccerphone-2007/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft and VoiceXML</title>
		<link>http://www.wombatnation.com/2006/04/microsoft-and-voicexml</link>
		<comments>http://www.wombatnation.com/2006/04/microsoft-and-voicexml#comments</comments>
		<pubDate>Fri, 14 Apr 2006 06:42:26 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2006/04/microsoft-and-voicexml</guid>
		<description><![CDATA[Microsoft recently announced that Speech Server 2007 will provide support for speech applications written in VoiceXML. In order to penetrate the enterprise market for speech applications, Microsoft really had no choice. SALT-based applications remain as rare as hen&#8217;s teeth in the enterprise. Ok, maybe not that rare, but certainly the number pales in comparison to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/presspass/press/2006/apr06/04-05MSS07BetaPR.mspx">Microsoft recently announced that Speech Server 2007</a> will provide support for speech applications written in VoiceXML. In order to penetrate the enterprise market for speech applications, Microsoft really had no choice. SALT-based applications remain as rare as hen&#8217;s teeth in the enterprise. Ok, maybe not that rare, but certainly the number pales in comparison to the number of VoiceXML-based applications. The press release says &#8220;More than 40,000 telephony ports of capacity have been licensed, and Speech Server customers are successfully answering more than 10 million calls per month on the platform&#8221;. I know of individual companies that by themselves handle more than that many calls per month with VoiceXML applications.
Also, it&#8217;s become pretty clear that VoiceXML is winning the mindshare of the standards committees. Of course, VoiceXML had a big advantage by preceding SALT by several years. Even in the multimodal space, SALT is very unlikely to become the anointed standard. Some of SALT will likely live on in VoiceXML 3.0 and beyond. That&#8217;s a very good thing for all of us, though, as I believe VoiceXML 3.0 and XHTML+V are going to be much better standards due to some of the good ideas that originated from the work on SALT.
I&#8217;m curious if part of the reason for <a href="http://www.wombatnation.com/2005/10/speech-business-consolidation">Microsoft picking up some of the technology assets and a few people from failed start-up Unveil</a> was to gain some additional VoiceXML experience in advance of this plan. After all, the headline of the press release I linked to above was &#8220;Microsoft <strong>Unveils</strong> Road Map for Speech Server 2007&#8243;. Then again, maybe not.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2006/04/microsoft-and-voicexml/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SpeechTEK West 2006 Day 2 Afternoon</title>
		<link>http://www.wombatnation.com/2006/02/speechtek-west-2006-day-2-afternoon</link>
		<comments>http://www.wombatnation.com/2006/02/speechtek-west-2006-day-2-afternoon#comments</comments>
		<pubDate>Tue, 21 Feb 2006 07:43:22 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/2006/02/speechtek-west-2006-day-2-afternoon</guid>
		<description><![CDATA[In the afternoon, I attended two sessions on multimodal applications. Dave Raggett from the W3C started the session with a talk on Speech Enabling Web Browsers. He has been working on some prototype applications that combine AJAX with speech. He uses a local HTTP server to handle audio on the device (which, for now, is [...]]]></description>
			<content:encoded><![CDATA[<p>In the afternoon, I attended two sessions on multimodal applications.</p>

<p>Dave Raggett from the W3C started the session with a talk on Speech Enabling Web Browsers. He has been working on some prototype applications that combine AJAX with speech. He uses a local HTTP server to handle audio on the device (which, for now, is a laptop). A remote HTTP server provides spech services. He uses AJAX, or more specifically, the XMLHTTP object and JavaScript to interact with the remote server. Audio is sent in the request and the interpretation is returned as <a href="http://www.w3.org/TR/emma/">EMMA</a> markup (SRGS + SISR). He presented a sample application for ordering a pizza that even handled compound utterances. For a prototype, it worked reasonably well. The application was implemented in XHTML, CSS, and JavaScript. He also used AJAX for logging, which allowed him to maintain a synchronized log on the server.</p>

<p>Mark Randolph talked about how Motorola was trying to evolve push-to-talk to &#8220;push-to-ask&#8221;, i.e., making speech queries to an online database. They are working with SandCherry to commercialize speech apps that use a radio network rather than a telephone network. One nice think about the push-to-talk model is that it creates a clear endpoint for turn-taking in a speech app. They&#8217;ve introduced the +V Framework, which provides APIs to interface with local codecs. They are also doing distributed speech recognition by putting the front end of the SR on the device. An ANR codec is used for audio to be played back on the device. <a title="DMSP XML" href="http://www.ietf.org/internet-drafts/draft-engelsma-dmsp-01.txt">DMSP</a>, which uses binary XML, is used to sync the local app with the remote app. Cepstral analysis and some noise reduction is done up front. Endpoint markers are added to aid with transcription. Noise reduction is done only on the sound captured during the push-to-talk phase, partly due to battery usage issues.</p>

<p>Luisa Cordano from <a href="http://www.loquendo.com">Loquendo</a> kicked off the second session. She talked about work they are doing with AirBus. SNOW is a project to provide multimodal access to maintenance info for workers. She played a video that demonstrated a worker being able to capture video with a head mounted camera, call up manuals via speech, and display information on a PDA. The speech and PDA media channels were synchronized.</p>

<p>Someone from Nortel talked about the benefits of standards and gave a high level overview of the kinds of speech and multimodal apps that companies have been building for many years.</p>

<p>Jim Barnett talked in more depth about X+V and SALT plus XHTML. He explained how the X+V  tag provides explicit binding of slots. There was some good info in his talk, but not enough of it. This happened to a lot of the speakers at the end of sessions, as their time slots got compressed by earlier speakers.</p>

<p>Finally, Dave Burke at VoxPilot gave a glossy, and yet very informative and technical, presentation on video interactive services.  He talked about what they are doing with 3g mobile video (H.324M, 64 kbps per channel) and video over IP. Video is H.264 or MPEG-4 and audio is AMR or G.723. RTP is used for the video stream for video over IP. They use the VXML  tag for video. It works, but there has been some discussion on the voice browser working group mailing list about adding tags for other media, such as video. He also talked about video streaming with Skype and <a href="http://www.sonyive.com/">Sony IVE</a> (Instant Video Everywhere).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2006/02/speechtek-west-2006-day-2-afternoon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SpeechTEK West 2006 Day 2 Morning</title>
		<link>http://www.wombatnation.com/2006/02/speechtek-west-2006-day-2-morning</link>
		<comments>http://www.wombatnation.com/2006/02/speechtek-west-2006-day-2-morning#comments</comments>
		<pubDate>Sat, 04 Feb 2006 20:53:00 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/?p=428</guid>
		<description><![CDATA[Tuesday morning I attended sessions on core speech technology and dialog design. Dr. Randy Ford from Sonum Technologies, talked about using strong Natural Language Processing (NLP) to improve speech recognition. He claimed that by using N-gram substitution (e.g., replace the likely misrec &#8220;think you&#8221; with &#8220;thank you&#8221;), phonetic tumbling, or a hybrid of the two, [...]]]></description>
			<content:encoded><![CDATA[<p>Tuesday morning I attended sessions on core speech technology and dialog design.</p>

<p>Dr. Randy Ford from <a href="http://www.sonumtech.com/">Sonum Technologies</a>, talked about using strong Natural Language Processing (NLP) to improve speech recognition. He claimed that by using N-gram substitution (e.g., replace the likely misrec &#8220;think you&#8221; with &#8220;thank you&#8221;), phonetic tumbling, or a hybrid of the two, you can  reasonably achieve a 20% improvement on the base recognition. I wish I could provide more detail on phonetic tumbling, but he had to rush through the end of his presentation and I was too busy taking notes on what he had previously said.</p>

<p>Yoon Kim from <a href="http://www.novauris.com/">Novauris</a> discussed using phonetic techniques to improve recognition for large lists. By taking into account syllable structure and stress, they feel they can significantly improve recognition performance over that of conventional SR engines for items in a large corpora. With respect to lexical stress, they are analysing the stress placed on consonants coming immediately before or after vowels, as well as many aspects of how the vowels themselves are pronounced. Recognition accuracy is locally decreased for unstressed vowels, so they have found it helps a lot in this case to also look closely at the stress placed on nearby consonants. Language-specific syllable structure affects how important this differentiation can be. While the English language generally has more complicated syllable structure and stress distinctions than Korean, Korean can have much greater distinction between consonants preceding or following vowels.</p>

<p>Vlad Sejnoha from <a href="http://nuance.com/">Nuance</a> then gave a talk on current work at Nuance on speech technology. The speech was very similar to ones given at last Fall&#8217;s Nuance Conversations conference. One of these days, I&#8217;ll post my notes from that conference.</p>

<p>In the Dialog Design panel, <a href="http://savicvoice.com/">Sondra AhlÃ©n</a> spoke about Spanish voice talents, including Spanish language <acronym title="text to speech">TTS</acronym> voices. She provided a lot of interesting trivia on Spanish speakers (Countries with most Spanish speakers in order are Mexico, Columbia, the US, and Spain; 12% of US residents speak Spanish and half of those don&#8217;t speak English; Columbian Spanish is considered the standard dialect for Latin American; Mexican Spanish is generally considered the standard dialect for the US). She also gave some examples of the differences between the dialects. She recommended that you always use a native speaker and that you match the dialect to the greatest common population in the expected audience. She then played some sample recordings from the most popular Spanish TTS voices, pointing out that while they are not as well tuned as English TTS voices, they are still quite usable.</p>

<p>My friend Bob Cooper from <a href="http://www.avaya.com/">Avaya</a> then spoke about an older product that was developed when he was at Conita, which was later acquired by Avaya. He spoke about dialog design considerations for power users who use an application multiple times per day. Use auditory feedback and lots of audio cues, optimize for the common path, and replace separator words with distinctive sounds.</p>

<p>A grad student working with <a href="http://www.intervoice.com/">Intervoice</a> presented his work on automatic tuning of context free grammars. He used the <a href="http://cslr.colorado.edu/beginweb/speech_recognition/sonic.html">SONIC large vocabulary (~75k words) SR engine</a> from CU Boulder to transcribe previously recorded utterances. He then re-ranked n-best lists using phonetic, local, syntactic, and sematic weights. Or, at least, so says my hastily scribbled notes. He then employed Princeton&#8217;s <a href="http://wordnet.princeton.edu/">WordNet</a>to provide automatic categorization via synonyms. Lexical chains were also used to classify the transcription. The most common utterances were automatically added to the grammar, and common sub-sequences were favored over longer sequences. He claimed that for one test with an initially untuned application, his automatic grammar tuner performed within 2% of a manually tuning performed by someone at Intervoice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2006/02/speechtek-west-2006-day-2-morning/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SpeechTEK West 2006</title>
		<link>http://www.wombatnation.com/2006/01/speechtek-west-2006</link>
		<comments>http://www.wombatnation.com/2006/01/speechtek-west-2006#comments</comments>
		<pubDate>Sat, 28 Jan 2006 07:48:58 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/?p=425</guid>
		<description><![CDATA[I&#8217;ll be at SpeechTEK West in San Francisco next week. If anyone reading this will be there, email me or post a comment if you want to meet up. I&#8217;ll be in Voxify&#8217;s booth on Wednesday. Stop by if you want to hear first hand about the great platform and speech application templates we&#8217;ve built, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be at <a href="http://speechtek.com/">SpeechTEK</a> West in San Francisco next week. If anyone reading this will be there, email me or post a comment if you want to meet up. I&#8217;ll be in <a href="http://www.voxify.com/">Voxify&#8217;s</a> booth on Wednesday. Stop by if you want to hear first hand about the great platform and speech application templates we&#8217;ve built, as well as all the cool speech apps we&#8217;ve set up for clients. If you&#8217;re interested in joining us, bring your resumÃ©, because we&#8217;re definitely hiring.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2006/01/speechtek-west-2006/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mobcasting</title>
		<link>http://www.wombatnation.com/2005/11/mobcasting</link>
		<comments>http://www.wombatnation.com/2005/11/mobcasting#comments</comments>
		<pubDate>Mon, 07 Nov 2005 03:51:12 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Blogging and RSS]]></category>
		<category><![CDATA[PhoneBlogger]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[VoiceXML]]></category>

		<guid isPermaLink="false">http://www.wombatnation.com/?p=408</guid>
		<description><![CDATA[I haven&#8217;t posted about PhoneBlogger in quite a while, but I&#8217;m thinking about updating and enhancing some of the code. A lot has happened in the audio/phone blogging world since I announced PhoneBlogger January 9, 2003, and posted the PhoneBlogger source code on SourceForge. One new buzzword is mobcasting. The Wikipedia page on mobcasting quotes [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t posted about <a href="http://www.wombatnation.com/phoneblogger/">PhoneBlogger</a> in quite a while, but I&#8217;m thinking about updating and enhancing some of the code. A lot has happened in the audio/phone blogging world since I <a href="http://www.wombatnation.com/2003/01/welcome-to-phoneblogger">announced PhoneBlogger January 9, 2003</a>, and posted the <a href="http://sourceforge.net/projects/phoneblogger">PhoneBlogger source code on SourceForge</a>.</p>

<p>One new buzzword is <a href="http://en.wikipedia.org/wiki/Mobcasting">mobcasting</a>. The Wikipedia page on mobcasting quotes Andy Carvin as writing:</p>

<blockquote>A quick example: imagine a large protest at a political convention. During the protest, police overstep their authority and begin abusing protesters, sometimes brutally. A few journalists are covering the event, but not live. For the protestors and civil rights activists caught in the mÃªlÃ©e, the police abuses clearly need to be documented and publicized as quickly as possible.</blockquote>

<p>This is quite similar to the scenario I was thinking of nearly three years ago when I announced PhoneBlogger:</p>

<blockquote>A journalist could use it from a payphone (good luck finding one, though) or with a basic cellphone to immediately publish to the web from the scene of an unexpected event in progress. Itâ€™s moblogging for the people, man.</blockquote>

<p>Note the quaint reference to a payphone. My point was that you wouldn&#8217;t need a fancy phone. Of course, mobile phones have come a long way since I wrote that. Carvin&#8217;s example also includes the use of camera/videophones, rather then just audio.</p>

<p>My favorite part of the Wikipedia article, though, is near the end where it says:</p>

<blockquote>Carvin is now exploring the creation of an open-source mobcasting tool that could be installed on a server to allow for community mobcasts via a local telephone call.</blockquote>

<p>I&#8217;ve been thinking about the same thing, too. While it makes life simpler for me to host the application with a VoiceXML hosting provider like <a href="http://www.bevocal.com/">BeVocal</a>, I do like the idea of having a more self-contained app. It&#8217;s going to be pretty complicated, though, to sort out everything I need with a free PBX like <a href="http://asterisk.org/">Asterisk</a> or <a href="http://www.sipfoundry.org/sipX/">sipX</a>, a free VoiceXML browser like <a href="http://www.speech.cs.cmu.edu/openvxi/index.html">OpenVXI</a>, a free <acronym title="automatic speech recognition">ASR</acronym> engine like <a href="http://cmusphinx.sourceforge.net/html/cmusphinx.php">Sphinx</a>, and a free <acronym title="text to speech">TTS</acronym> engine like <a href="http://www.cstr.ed.ac.uk/projects/festival/">Festival</a>. Dealing with <acronym title="public switched telephone network">PSTN</acronym> calls will also be a hassle. If I implemented this, I would probably just deal with <acronym title="session initiation protocol">SIP</acronym>. That led me down the path of looking into building or finding a SIP softphone that could run on a mobile phone. There is a Java API, <a href="http://www.jcp.org/aboutJava/communityprocess/final/jsr032/">JAIN-SIP</a>, for building a <a href="https://sip-communicator.dev.java.net/">Java SIP user agent</a>. The phone would ned only a <acronym title="Java 2 Mobile Edition">J2ME</acronym> runtime. What with all these acronyms and integration efforts, I think you can guess why I haven&#8217;t taken all of this on by myself, yet.</p>

<p>I&#8217;m glad to see that people like Andy are doing really interesting things with audio blogging. I built PhoneBlogger solely because I thought it would be fun to build. I never really ended up using it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wombatnation.com/2005/11/mobcasting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

