<?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>Terence Eden has a Blog &#187; ribbit</title> <atom:link href="http://shkspr.mobi/blog/index.php/tag/ribbit/feed/" rel="self" type="application/rss+xml" /><link>http://shkspr.mobi/blog</link> <description>Mobiles, Shakespeare, Politics, Usability.</description> <lastBuildDate>Mon, 06 Feb 2012 16:31:09 +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>Tropo Voicemail Transcription Service</title><link>http://shkspr.mobi/blog/index.php/2012/02/tropo-voicemail-transcription-service/</link> <comments>http://shkspr.mobi/blog/index.php/2012/02/tropo-voicemail-transcription-service/#comments</comments> <pubDate>Mon, 06 Feb 2012 16:31:09 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[ribbit]]></category> <category><![CDATA[spinvox]]></category> <category><![CDATA[tropo]]></category> <category><![CDATA[voicemail]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=5325</guid> <description><![CDATA[I&#8217;ve been using Ribbit Voicemail ever since SpinVox died. Sadly, Ribbit has croaked. So, how to get my voicemails transcribed and have MP3s emailed to me? Enter Tropo! Tropo makes it simple to build phone, SMS and Instant messaging applications. You use the web technologies you already know and Tropo&#8217;s powerful cloud API to bring <a
href='http://shkspr.mobi/blog/index.php/2012/02/tropo-voicemail-transcription-service/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>I&#8217;ve been using <a
href="http://shkspr.mobi/blog/index.php/2010/03/ribbit-voicemail/">Ribbit Voicemail ever since SpinVox died</a>.  Sadly, <a
href="http://www.engadget.com/2012/01/21/ask-engadget-are-there-uk-based-voicemail-to-sms-email-alternat/">Ribbit has croaked</a>.</p><p>So, how to get my voicemails transcribed and have MP3s emailed to me?</p><p>Enter <a
href="https://www.tropo.com/">Tropo</a>!</p><blockquote><p>Tropo makes it simple to build phone, SMS and Instant messaging applications. You use the web technologies you already know and Tropo&#8217;s powerful cloud API to bring real-time communications to your apps.</p></blockquote><p>Basically, you write PHP to run on Tropo&#8217;s servers, which then can interact with Voice and Text.</p><p>Following <a
href="https://www.tropo.com/docs/scripting/voice_mail_transcription.htm">Tropo&#8217;s great tutorials</a>, I was able to knock up this voicemail system in a few minutes.</p><p>This accepts a voice call, plays a message, records the call and uploads it to an FTP site.  Then it emails me the transcription.</p><div
class="geshi no php"><ol><li
class="li1"><div
class="de1"><span
class="sy0">&lt;</span> ?php</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="co1">// Get the phone number of the caller</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$callerID</span> <span
class="sy0">=</span> <span
class="re1">$currentCall</span><span
class="sy0">-&gt;</span><span
class="me1">callerID</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$date</span> <span
class="sy0">=</span> <span
class="kw3">date</span><span
class="br0">&#40;</span><span
class="st0">&quot;Ymd&quot;</span><span
class="br0">&#41;</span> <span
class="sy0">.</span> <span
class="st0">&quot;-&quot;</span> <span
class="sy0">.</span> <span
class="kw3">date</span><span
class="br0">&#40;</span><span
class="st0">&#39;h-i-s&#39;</span><span
class="br0">&#41;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="co1">// Filename of the mp3 to be uploaded</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$id</span> <span
class="sy0">=</span> <span
class="re1">$callerID</span> <span
class="sy0">.</span> <span
class="st0">&quot;-&quot;</span> <span
class="sy0">.</span> <span
class="re1">$date</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="co1">// FTP details, server, path, filename, extension</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$uploadURI</span> <span
class="sy0">=</span> <span
class="st0">&quot;ftp://ftp.example.com/&quot;</span> <span
class="sy0">.</span> <span
class="re1">$id</span> <span
class="sy0">.</span> <span
class="st0">&quot;.mp3&quot;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="co1">// FTP Login details</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$ftpUser</span> <span
class="sy0">=</span> <span
class="st0">&quot;user&quot;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$ftpPassword</span> <span
class="sy0">=</span><span
class="st0">&quot;pass&quot;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="co1">// Email to deliver the message to</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$email</span> <span
class="sy0">=</span> <span
class="st0">&quot;mailto:tropovoicemail@example.com&quot;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="co1">// What will appear in the email</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$messageBody</span> <span
class="sy0">=</span> <span
class="st0">&quot;<span
class="es0">\n</span>From: +&quot;</span> <span
class="sy0">.</span> <span
class="re1">$callerID</span> <span
class="sy0">.</span></div></li><li
class="li1"><div
class="de1">&nbsp; <span
class="st0">&quot;<span
class="es0">\n</span>At &quot;</span> <span
class="sy0">.</span> <span
class="re1">$date</span> <span
class="sy0">.</span></div></li><li
class="li1"><div
class="de1">&nbsp; <span
class="st0">&quot;<span
class="es0">\n</span>Link: http://example.com/&quot;</span> <span
class="sy0">.</span> <span
class="re1">$id</span> <span
class="sy0">.</span> <span
class="st0">&quot;.mp3&quot;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="co1">// Message to be played to the caller </span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$spokenMessage</span> <span
class="sy0">=</span> <span
class="st0">&quot;This is Terence Eden&#39;s voicemail.</span></div></li><li
class="li1"><div
class="de1"><span
class="st0"> &nbsp; &nbsp;Please leave your message at the beep and I will deliver it.&quot;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="co1">// What &quot;voice&quot; to use</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="re1">$voice</span> <span
class="sy0">=</span> <span
class="st0">&quot;Veronica&quot;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;record<span
class="br0">&#40;</span><span
class="re1">$spokenMessage</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; <span
class="kw3">array</span><span
class="br0">&#40;</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;voice&quot;</span><span
class="sy0">=&gt;</span> <span
class="re1">$voice</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;beep&quot;</span><span
class="sy0">=&gt;</span>true<span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;timeout&quot;</span><span
class="sy0">=&gt;</span><span
class="nu0">10</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;silenceTimeout&quot;</span><span
class="sy0">=&gt;</span><span
class="nu0">7</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;maxTime&quot;</span><span
class="sy0">=&gt;</span><span
class="nu0">60</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;terminator&quot;</span> <span
class="sy0">=&gt;</span> <span
class="st0">&quot;#&quot;</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;recordFormat&quot;</span> <span
class="sy0">=&gt;</span> <span
class="st0">&quot;audio/wav&quot;</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;recordURI&quot;</span> <span
class="sy0">=&gt;</span> <span
class="re1">$uploadURI</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;recordUser&quot;</span> <span
class="sy0">=&gt;</span> <span
class="re1">$ftpUser</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;recordPassword&quot;</span> <span
class="sy0">=&gt;</span> <span
class="re1">$ftpPassword</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;transcriptionOutURI&quot;</span> <span
class="sy0">=&gt;</span> <span
class="re1">$email</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;onRecord&quot;</span><span
class="sy0">=&gt;</span><span
class="st0">&quot;recordFCN&quot;</span><span
class="sy0">,</span></div></li><li
class="li1"><div
class="de1">&nbsp; &nbsp;<span
class="st0">&quot;transcriptionID&quot;</span> <span
class="sy0">=&gt;</span> <span
class="re1">$messageBody</span></div></li><li
class="li1"><div
class="de1">&nbsp; <span
class="br0">&#41;</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="br0">&#41;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;</div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="kw2">function</span> recordFCN<span
class="br0">&#40;</span><span
class="re1">$event</span><span
class="br0">&#41;</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="br0">&#123;</span></div></li><li
class="li1"><div
class="de1">&nbsp; say<span
class="br0">&#40;</span><span
class="st0">&quot;You said&quot;</span> <span
class="sy0">.</span> <span
class="re1">$event</span><span
class="sy0">-&gt;</span><span
class="me1">recordURI</span><span
class="br0">&#41;</span><span
class="sy0">;</span></div></li><li
class="li1"><div
class="de1">&nbsp;<span
class="br0">&#125;</span></div></li><li
class="li1"><div
class="de1"><span
class="kw2">?&gt;</span></div></li></ol></div><h2>The Result</h2><p><img
src="http://shkspr.mobi/blog/wp-content/uploads/2012/02/tropo-transcription-screenshot.jpg" alt="tropo transcription screenshot" title="tropo transcription screenshot" width="320" height="533" class="aligncenter size-full wp-image-5330" /><br
/> The transcription is <em>terrible</em>. It doesn&#8217;t even get the gist of the message. Interestingly, the transcription quality is fantastic if the caller speaks with an American accent.  This is <a
href="https://www.tropo.com/forums/?xt=1328544253975&#038;&#038;bb-cid=100&#038;bb-statusBitToShow=0&#038;bb-tid=1649800#bb">an acknowledged problem with the Tropo platform</a> &#8211; you can pass the voice file to a paid-for transcription service if you want.</p><p>The email won&#8217;t let you customise the subject line, nor can you attach the voice file.  As you can see, there is some scope for customising the message body &#8211; so a link to the file can be placed there.  Filesize is about 0.5MB for a 60 second voicemail &#8211; so nice and quick to download even over GPRS.</p><h2>What&#8217;s Next?</h2><p>The nice thing about this system is that it&#8217;s pretty customisable. I can set up personalised greetings based on the caller&#8217;s number, I can route messages in various ways, and generally muck around with it.</p><p>I think I&#8217;ll play about with Tropo for now. It&#8217;s free, easy to use, and just about does the job.  I&#8217;m hearing good things about <a
href="http://www.twilio.com/">Twilio</a> so may give them a trial next.</p><p>If you&#8217;d like to leave me a voicemail, call me on <a
href="tel:+441865521052">+441865521052</a>.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=5325&amp;md5=846bead7e7ae03c96fb0af60d508820e" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2012/02/tropo-voicemail-transcription-service/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=5325&amp;md5=846bead7e7ae03c96fb0af60d508820e" type="text/html" /> </item> <item><title>What&#8217;s Happening With Ribbit Mobile?</title><link>http://shkspr.mobi/blog/index.php/2011/08/whats-happening-with-ribbit-mobile/</link> <comments>http://shkspr.mobi/blog/index.php/2011/08/whats-happening-with-ribbit-mobile/#comments</comments> <pubDate>Wed, 10 Aug 2011 11:09:07 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[ribbit]]></category> <category><![CDATA[voicemail]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=4330</guid> <description><![CDATA[I love Ribbit Mobile&#8216;s voicemail service. It&#8217;s the perfect replacement for the now-defunct SpinVox. My voicemail gets transcribed (by a human or machine) &#8211; then the text is emailed and texted to me. I even get an MP3 recording for later blackmail purposes. But today comes the news that Ribbit is shutting down. Or is <a
href='http://shkspr.mobi/blog/index.php/2011/08/whats-happening-with-ribbit-mobile/'>[...]</a>]]></description> <content:encoded><![CDATA[<p><a
href="http://shkspr.mobi/blog/index.php/2010/03/ribbit-voicemail/">I love Ribbit Mobile</a>&#8216;s voicemail service.  It&#8217;s the perfect replacement for the now-defunct SpinVox.  My voicemail gets transcribed (by a human or machine) &#8211; then the text is emailed and texted to me.  I even get an MP3 recording for later blackmail purposes.</p><p>But today comes the news that <a
href="http://gigaom.com/2011/08/10/ribbit-croaks-just-three-years-after-105m-bt-deal/?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed:+OmMalik+%28GigaOM:+Tech%29&#038;utm_content=Google+Reader">Ribbit is shutting down</a>.  Or is it?</p><p>The email specifically says:</p><blockquote><p>&#8220;this notice only refers to Ribbit Developers and does NOT impact Ribbit Mobile or Ribbit for Salesforce users&#8221;</p></blockquote><p>Indeed, there are still a few signs of life.  Their <a
href="http://www.ribbitmobile.com/help/" class="broken_link">helpdesk status was updated at the start of the month</a><br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/08/Ribbit-Helpdesk.png" alt="" title="Ribbit Helpdesk" width="512" height="393" class="aligncenter size-full wp-image-4333" /><br
/> At the end of last month, the signature of the emails changed to say &#8220;Powered by BT Ribbit&#8221; &#8211; perhaps suggesting a relaunch?<br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/08/Ribbit-Email-Transciption-old.png" alt="" title="Ribbit Email Transciption old" width="427" height="536" class="aligncenter size-full wp-image-4332" /></p><p><img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/08/Ribbit-Email-Transciption-1.png" alt="" title="Ribbit Email Transciption 1" width="410" height="532" class="aligncenter size-full wp-image-4331" /></p><p>Something is definitely up. But I don&#8217;t know what.  The service keeps working &#8211; but the helpdesk hasn&#8217;t returned any of my calls.  There are changes going on in the background &#8211; but still no word on when or if it will be relaunched.</p><p>Does anyone know for sure what&#8217;s happening?</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=4330&amp;md5=a03bde4920d4b67161ba2ac83352373a" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2011/08/whats-happening-with-ribbit-mobile/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=4330&amp;md5=a03bde4920d4b67161ba2ac83352373a" type="text/html" /> </item> <item><title>Ribbit Voicemail</title><link>http://shkspr.mobi/blog/index.php/2010/03/ribbit-voicemail/</link> <comments>http://shkspr.mobi/blog/index.php/2010/03/ribbit-voicemail/#comments</comments> <pubDate>Thu, 11 Mar 2010 13:11:04 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[ribbit]]></category> <category><![CDATA[spinvox]]></category> <category><![CDATA[voicemail]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=1802</guid> <description><![CDATA[(Edit 20100315 &#8211; Thanks to Mobyaffiliates for choosing this post as Carnival of the Mobilists post of the week!) I&#8217;m a long time fan of SpinVox &#8211; the Voicemail to SMS service.  In my review of them last year I found seven ways they could improve their service. Due to SpinVox&#8217;s rather beleaguered year, there <a
href='http://shkspr.mobi/blog/index.php/2010/03/ribbit-voicemail/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>(<em>Edit 20100315</em> &#8211; Thanks to <a
href="http://www.mobyaffiliates.com/blog/mobilistsaffiliatemarketing">Mobyaffiliates</a> for choosing this post as <a
href="http://www.mobili.st/">Carnival of the Mobilists</a> post of the week!)</p><p>I&#8217;m a long time fan of SpinVox &#8211; the Voicemail to SMS service.  In <a
href="http://shkspr.mobi/blog/index.php/2009/06/what-i-want-from-spinvox/">my review of them last year</a> I found seven ways they could improve their service.</p><p>Due to <a
href="http://www.bbc.co.uk/blogs/thereporters/rorycellanjones/2010/01/spinvox_investors_got_just_600.html">SpinVox&#8217;s rather beleaguered year</a>, there have been no noticeable improvements or enhancements in the service they provide.</p><p>(<em>Edit 20100318</em> &#8211; SpinVox is now cancelling all individual users&#8217; accounts)</p><p
style="text-align: center;"><div
id="attachment_1851" class="wp-caption aligncenter" style="width: 370px"><img
class="size-full wp-image-1851 " title="Dear customer, we regret to inform you that SpinVox is no longer supporting individual user accounts. Your  account will expire in 7 days.  Please call your mobile network provider, should u wish to re-enable standard voicemail service.  We apologise for any inconvenience." src="http://shkspr.mobi/blog/wp-content/uploads/2010/03/Capture15_53_41-e1269014403794.jpg" alt="Dear customer, we regret to inform you that SpinVox is no longer supporting individual user accounts. Your  account will expire in 7 days.  Please call your mobile network provider, should u wish to re-enable standard voicemail service.  We apologise for any inconvenience." width="360" height="223" /><p
class="wp-caption-text">SpinVox Cancelled</p></div><h2>Enter Ribbit!</h2><p>Currently in beta, <a
href="http://www.ribbit.com/">Ribbit</a> promises to be all that SpinVox could be &#8211; and more.</p><p>The basic premise is the same.  You divert all your voicemail to their service, a caller leaves a message, you get it delivered as an SMS.  Perfect.</p><p>Set up was a breeze, enter account information and set up the divert.  They even do a test call to make sure everything is set up correctly.</p><h2>Compared To Wishlist</h2><p>So, how do they do compared to my wishlist?</p><h3>MP3 delivery.</h3><blockquote><p>It’s great to receive an email with the transcript,  but I’d really like to get an audio file as well.  Useful for record  keeping, error checking and blackmail.</p></blockquote><p>Yup &#8211; done and done!  MP3s come through email. If your phone picks up your email, you can listen to a message without having to dial in.  Perfect.</p><div
id="attachment_1807" class="wp-caption aligncenter" style="width: 487px"><img
class="size-full wp-image-1807" title="MP3 Email" src="http://shkspr.mobi/blog/wp-content/uploads/2010/03/MP3-Email.jpg" alt="MP3 Email" width="477" height="566" /><p
class="wp-caption-text">MP3 Email</p></div><h3>.mobi site.</h3><blockquote><p>I’d like to be able to go to spinvox.mobi and see a list  of all the voicemails I’ve received – including transcripts and audio  downloads.</p></blockquote><p>Again, close to perfect.  There&#8217;s a hidden mobile site &#8211; <a
href="http://m.ribbit.com/">http://m.ribbit.com/</a> which gives you direct access to your transcriptions.  It even lets you dial in to a message or return a call directly from the web site.</p><div
id="attachment_1805" class="wp-caption aligncenter" style="width: 477px"><img
class="size-full wp-image-1805" title="Mobile Ribbit" src="http://shkspr.mobi/blog/wp-content/uploads/2010/03/Mobile-Ribbit.png" alt="Mobile Ribbit" width="467" height="490" /><p
class="wp-caption-text">Mobile Ribbit</p></div><h3>Personal API.</h3><blockquote><p>I’d like access to an API for personal use.  To enable  me to generate <a
href="http://www.wordle.net/">wordles </a>or  similar.  To grab all the voicemails from a particular person or  containing a certain phrase.</p></blockquote><p>It&#8217;s there! <a
href="http://developer.ribbit.com/">http://developer.ribbit.com/</a>- I need to dig around to see what can be done.</p><h3>Personalised Greetings.</h3><blockquote><p>I’d like to set different greetings for  different sets of numbers. I keep the same number for work, friends and  family. My friends don’t want to hear my work Out-Of-Office message and  my work colleagues don’t want to hear my James Bond impression.</p></blockquote><p>I can&#8217;t see a way to do this.  It should be possible.  Once I&#8217;ve uploaded my address book, I want my mates to get one voicemail greeting, work colleagues to get another, etc.</p><blockquote><p>Along with greetings, I’d like to be able to quickly flick between  my regular voicemail message and my out of office message. It’s great  fun recording a new one every time I go away for a few days.</p></blockquote><p>Yes! This works!  You can record as many greetings as you like &#8211; you can even use your computer&#8217;s microphone.  You can swap them over on the web &#8211; I&#8217;ve not found a way to do it either via IVR or mobile web.</p><h3>Direct Dial Voicemail.</h3><blockquote><p>On Vodafone UK, I can dial 121 before any  number and go straight through to voicemail – handy if I want to avoid  someone! I’d like a number I can give out which would just go direct to  my voicemail.</p></blockquote><p>Not available.  A minor concern.</p><h2>Website</h2><p>Ribbit has an incredibly feature packed website.  As well as giving you complete control over your account, you can also use the website to read and listen to all your messages.</p><div
id="attachment_1814" class="wp-caption aligncenter" style="width: 460px"><img
class="size-full wp-image-1814" title="Ribbit Web Control Panel" src="http://shkspr.mobi/blog/wp-content/uploads/2010/03/Ribbit-Web-Control-Panel.png" alt="Ribbit Web Control Panel" width="450" height="146" /><p
class="wp-caption-text">Ribbit Web Control Panel</p></div><p>You can also see missed calls. This is wonderfully useful. If you&#8217;re out of coverage, your phone won&#8217;t ring. Once you&#8217;re back in coverage, you can get a text or email from Ribbit telling you who rang but didn&#8217;t leave a message.</p><h2>Shortcomings</h2><p>Nothing in this world is perfect &#8211; let&#8217;s look at what Ribbit does badly.</p><h3>Startup</h3><p>The welcome text is very poorly done&#8230;</p><div
id="attachment_1806" class="wp-caption aligncenter" style="width: 490px"><img
class="size-full wp-image-1806" title="Ribbit Welcome SMS" src="http://shkspr.mobi/blog/wp-content/uploads/2010/03/Ribbit-Welcome-SMS.jpg" alt="Ribbit Welcome SMS" width="480" height="320" /><p
class="wp-caption-text">Ribbit Welcome SMS</p></div><p>Coming from an unknown number, oddly formatted and no link to the mobile portal. The link presented doesn&#8217;t render well on mobile either.</p><p>You only get one chance to make a first impression &#8211; sadly Ribbit&#8217;s first impression is of carelessness.</p><h3>Accuracy</h3><p>Always a tricky one to get right.  Take a listen to this MP3 and compare it to the transcribed text.<br
/> <object
id="iefix1" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="129" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="data" value="http://boos.audioboo.fm/swf/fullsize_player.swf" /><param
name="scale" value="noscale" /><param
name="salign" value="lt" /><param
name="bgColor" value="#FFFFFF" /><param
name="allowScriptAccess" value="always" /><param
name="wmode" value="window" /><param
name="FlashVars" value="mp3Title=Ribbit+Transcription+Test&amp;mp3Time=12.39pm+11+Mar+2010&amp;mp3=http%3A%2F%2Faudioboo.fm%2Fboos%2F104289-ribbit-transcription-test.mp3&amp;mp3Author=edent&amp;mp3LinkURL=http%3A%2F%2Faudioboo.fm%2Fboos%2F104289-ribbit-transcription-test" /><param
name="src" value="http://boos.audioboo.fm/swf/fullsize_player.swf" /><param
name="bgcolor" value="#FFFFFF" /><param
name="flashvars" value="mp3Title=Ribbit+Transcription+Test&amp;mp3Time=12.39pm+11+Mar+2010&amp;mp3=http%3A%2F%2Faudioboo.fm%2Fboos%2F104289-ribbit-transcription-test.mp3&amp;mp3Author=edent&amp;mp3LinkURL=http%3A%2F%2Faudioboo.fm%2Fboos%2F104289-ribbit-transcription-test" /><embed
id="iefix1" type="application/x-shockwave-flash" width="400" height="129" src="http://boos.audioboo.fm/swf/fullsize_player.swf" flashvars="mp3Title=Ribbit+Transcription+Test&amp;mp3Time=12.39pm+11+Mar+2010&amp;mp3=http%3A%2F%2Faudioboo.fm%2Fboos%2F104289-ribbit-transcription-test.mp3&amp;mp3Author=edent&amp;mp3LinkURL=http%3A%2F%2Faudioboo.fm%2Fboos%2F104289-ribbit-transcription-test" wmode="window" allowscriptaccess="always" bgcolor="#FFFFFF" salign="lt" scale="noscale" data="http://boos.audioboo.fm/swf/fullsize_player.swf"></embed></object></p><blockquote><p>Hi, Terry. It&#8217;s Mom. We&#8217;re just about to go over to have a cruise in Hong Kong. It&#8217;s the most beautiful place I&#8217;ve ever seen. I&#8217;m just knocked out. Anyway, we&#8217;d love to hear from you speak to you, I guess you can ring this phone. We mentioned we have a cruise and I may answer it. I hope you and Lis well. And I love you lots. Bye.</p></blockquote><p>Pretty damned accurate!  I put this under shortcomings because of the American translation of &#8220;Mum&#8221; to &#8220;Mom&#8221;.</p><h3>Timezones</h3><p>When your servers are in one country and your users are in another, date- and time-stamps become really important.</p><div
id="attachment_1805" class="wp-caption aligncenter" style="width: 477px"><img
class="size-full wp-image-1805" title="Mobile Ribbit" src="http://shkspr.mobi/blog/wp-content/uploads/2010/03/Mobile-Ribbit.png" alt="Mobile Ribbit" width="467" height="490" /><p
class="wp-caption-text">Mobile Ribbit</p></div><p>The timestamps in the mobile web version are several hours out.  A minor annoyance &#8211; but one which gives people a headache trying to work out why someone is calling you at 6AM!</p><h3>QA</h3><p>Notice the &#8220;Call Voicemail&#8221; link in the image above?</p><div
id="attachment_1803" class="wp-caption aligncenter" style="width: 490px"><img
class="size-full wp-image-1803" title="Ribbit Mobile Error" src="http://shkspr.mobi/blog/wp-content/uploads/2010/03/Ribbit-Mobile-Error.jpg" alt="Ribbit Mobile Error" width="480" height="320" /><p
class="wp-caption-text">Ribbit Mobile Error</p></div><p>It&#8217;s pointing to &#8211; I presume &#8211; the US dial in number, not the UK one.  There are several little errors like this.  None of them critical, but all enough to remind you it&#8217;s in Beta.</p><h2>Conclusion</h2><p>Ribbit is close to perfect. It blows SpinVox out of the water in terms of voicemail functionality.</p><p>It&#8217;s accuracy is good &#8211; and it&#8217;s upfront about its transcription methods.  It even lets you sacrifice accuracy for confidentiality if you&#8217;d rather just have machines listening in.</p><p>What will make it sink or swim is its <a
href="http://www.ribbit.com/mobile/plans-pricing.php">pricing</a>.  Free during beta, it&#8217;s promising <strong>free</strong> automated transcription, with pricepoints of US$10 and $30 for higher tiers of premium human-based transcription.</p><p>It&#8217;s missing a few &#8220;nice to haves&#8221; &#8211; SpinVox let me reply to voicemails via text-to-voice and would let me update my social networks by speaking a message.</p><p>The website and mobile web service need a bit of spit-and-polish &#8211; but it is functional.</p><p>I highly recommend you <a
href="http://www.ribbit.com/mobile/">sign up for the beta of Ribbit</a>.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=1802&amp;md5=a006bf2e3be1727f568ed38816f1baf9" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2010/03/ribbit-voicemail/feed/</wfw:commentRss> <slash:comments>7</slash:comments> <enclosure
url="http://audioboo.fm/boos/104289-ribbit-transcription-test.mp3" length="223360" type="audio/mpeg" /> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=1802&amp;md5=a006bf2e3be1727f568ed38816f1baf9" type="text/html" /> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (Requested URI is rejected)

Served from: www.shkspr.mobi @ 2012-02-07 10:20:46 -->
