<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/rss-style.xsl" type="text/xsl"?>
<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>ribbit &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/ribbit/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Wed, 11 Mar 2026 09:12:59 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://shkspr.mobi/blog/wp-content/uploads/2023/07/cropped-avatar-32x32.jpeg</url>
	<title>ribbit &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Tropo Voicemail Transcription Service]]></title>
		<link>https://shkspr.mobi/blog/2012/02/tropo-voicemail-transcription-service/</link>
					<comments>https://shkspr.mobi/blog/2012/02/tropo-voicemail-transcription-service/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Mon, 06 Feb 2012 16:31:09 +0000</pubDate>
				<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&#039;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&#039;s powerful cloud API to bring real-time communications to your apps.  Basically, you write…]]></description>
										<content:encoded><![CDATA[<p>I've been using <a href="https://shkspr.mobi/blog/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://web.archive.org/web/20120315145738/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's powerful cloud API to bring real-time communications to your apps.</p></blockquote>

<p>Basically, you write PHP to run on Tropo's servers, which then can interact with Voice and Text.</p>

<p>Following <a href="https://web.archive.org/web/20120316192612/https://www.tropo.com/docs/scripting/voice_mail_transcription.htm">Tropo'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>

<pre><code class="language-php">//  Get the phone number of the caller
$callerID = $currentCall-&gt;callerID;

$date = date("Ymd") . "-" . date('h-i-s');
//  Filename of the mp3 to be uploaded
$id = $callerID . "-" . $date;

//  FTP details, server, path, filename, extension
$uploadURI = "ftp://ftp.example.com/" . $id . ".mp3";

//  FTP Login details
$ftpUser = "user";
$ftpPassword ="pass";

//  Email to deliver the message to
$email = "mailto:tropovoicemail@example.com";

//  What will appear in the email
$messageBody = "nFrom: +" . $callerID .
    "nAt " . $date .
    "nLink: http://example.com/" . $id . ".mp3";
    //  Message to be played to the caller
$spokenMessage = "This is Terence Eden's voicemail.
         Please leave your message at the beep and I will deliver it.";
    // What "voice" to use
$voice = "Veronica";

record($spokenMessage,
    array(
        "voice"=&gt; $voice,
        "beep"=&gt;true,
        "timeout"=&gt;10,
        "silenceTimeout"=&gt;7,
        "maxTime"=&gt;60,
        "terminator" =&gt; "#",
        "recordFormat" =&gt; "audio/wav",
        "recordURI" =&gt; $uploadURI,
        "recordUser" =&gt; $ftpUser,
        "recordPassword" =&gt; $ftpPassword,
        "transcriptionOutURI" =&gt; $email,
        "onRecord"=&gt;"recordFCN",
        "transcriptionID" =&gt; $messageBody
    )
);

function recordFCN($event)
{
    say("You said" . $event-&gt;recordURI);
}
</code></pre>

<h2 id="the-result"><a href="https://shkspr.mobi/blog/2012/02/tropo-voicemail-transcription-service/#the-result">The Result</a></h2>

<p><img src="https://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">
The transcription is <em>terrible</em>. It doesn'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://web.archive.org/web/20250000000000*/https://www.tropo.com/forums/?xt=1328544253975&amp;&amp;bb-cid=100&amp;bb-statusBitToShow=0&amp;bb-tid=1649800#bb">an acknowledged problem with the Tropo platform</a> - you can pass the voice file to a paid-for transcription service if you want.</p>

<p>The email won'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 - so a link to the file can be placed there.  Filesize is about 0.5MB for a 60 second voicemail - so nice and quick to download even over GPRS.</p>

<h2 id="whats-next"><a href="https://shkspr.mobi/blog/2012/02/tropo-voicemail-transcription-service/#whats-next">What's Next?</a></h2>

<p>The nice thing about this system is that it's pretty customisable. I can set up personalised greetings based on the caller's number, I can route messages in various ways, and generally muck around with it.</p>

<p>I think I'll play about with Tropo for now. It's free, easy to use, and just about does the job.  I'm hearing good things about <a href="http://www.twilio.com/">Twilio</a> so may give them a trial next.</p>

<p>If you'd like to leave me a voicemail, call me on <del datetime="2025-02-06T07:37:10+00:00">+441865521052</del>.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=5325&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/02/tropo-voicemail-transcription-service/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[What's Happening With Ribbit Mobile?]]></title>
		<link>https://shkspr.mobi/blog/2011/08/whats-happening-with-ribbit-mobile/</link>
					<comments>https://shkspr.mobi/blog/2011/08/whats-happening-with-ribbit-mobile/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Wed, 10 Aug 2011 11:09:07 +0000</pubDate>
				<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&#039;s voicemail service.  It&#039;s the perfect replacement for the now-defunct SpinVox.  My voicemail gets transcribed (by a human or machine) - 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 it?  The email specifically says:  &#34;this notice only refers to Ribbit…]]></description>
										<content:encoded><![CDATA[<p><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/">I love Ribbit Mobile</a>'s voicemail service.  It's the perfect replacement for the now-defunct SpinVox.  My voicemail gets transcribed (by a human or machine) - 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="https://web.archive.org/web/20110909034655/http://gigaom.com/2011/08/10/ribbit-croaks-just-three-years-after-105m-bt-deal/">Ribbit is shutting down</a>.  Or is it?</p>

<p>The email specifically says:</p>

<blockquote><p>"this notice only refers to Ribbit Developers and does NOT impact Ribbit Mobile or Ribbit for Salesforce users"</p></blockquote>

<p>Indeed, there are still a few signs of life.  Their <a href="https://web.archive.org/web/20110822161633/http://www.ribbitmobile.com:80/help">helpdesk status was updated at the start of the month</a>
<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/08/Ribbit-Helpdesk.png" alt="Screenshot of a helpdesk website" width="512" height="393" class="aligncenter size-full wp-image-4333">
At the end of last month, the signature of the emails changed to say "Powered by BT Ribbit" - perhaps suggesting a relaunch?
<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/08/Ribbit-Email-Transciption-old.png" alt="Screenshot of email transcription." width="427" height="536" class="aligncenter size-full wp-image-4332"></p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/08/Ribbit-Email-Transciption-1.png" alt="Screenshot of email transcription now with a BT message at the bottom." width="410" height="532" class="aligncenter size-full wp-image-4331">

<p>Something is definitely up. But I don't know what.  The service keeps working - but the helpdesk hasn't returned any of my calls.  There are changes going on in the background - but still no word on when or if it will be relaunched.</p>

<p>Does anyone know for sure what's happening?</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=4330&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2011/08/whats-happening-with-ribbit-mobile/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Ribbit Voicemail]]></title>
		<link>https://shkspr.mobi/blog/2010/03/ribbit-voicemail/</link>
					<comments>https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 11 Mar 2010 13:11:04 +0000</pubDate>
				<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 2010-03-15 - Thanks to Mobyaffiliates for choosing this post as Carnival of the Mobilists post of the week!)  I&#039;m a long time fan of SpinVox - the Voicemail to SMS service.  In my review of them last year I found seven ways they could improve their service.  Due to SpinVox&#039;s rather beleaguered year, there have been no noticeable improvements or enhancements in the service they provide.  …]]></description>
										<content:encoded><![CDATA[<p>(<em>Edit 2010-03-15</em> - Thanks to <a href="https://web.archive.org/web/20100318043054/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'm a long time fan of SpinVox - the Voicemail to SMS service.&nbsp; In <a href="https://shkspr.mobi/blog/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's rather beleaguered year</a>, there have been no noticeable improvements or enhancements in the service they provide.</p>

<p>(<em>Edit 20100318</em> - SpinVox is now cancelling all individual users' accounts)</p>

<p style="text-align: center;">

</p><div id="attachment_1851" style="width: 370px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1851" 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="https://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 id="caption-attachment-1851" class="wp-caption-text">SpinVox Cancelled</p></div>

<p></p>

<h2 id="enter-ribbit"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#enter-ribbit">Enter Ribbit!</a></h2>

<p>Currently in beta, <a href="https://web.archive.org/web/20100314110336/http://www.ribbit.com/">Ribbit</a> promises to be all that SpinVox could be - and more.</p>

<p>The basic premise is the same.&nbsp; You divert all your voicemail to their service, a caller leaves a message, you get it delivered as an SMS.&nbsp; Perfect.</p>

<p>Set up was a breeze, enter account information and set up the divert.&nbsp; They even do a test call to make sure everything is set up correctly.</p>

<h2 id="compared-to-wishlist"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#compared-to-wishlist">Compared To Wishlist</a></h2>

<p>So, how do they do compared to my wishlist?</p>

<h3 id="mp3-delivery"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#mp3-delivery">MP3 delivery.</a></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.&nbsp; Useful for record  keeping, error checking and blackmail.</p></blockquote>

<p>Yup - done and done!&nbsp; MP3s come through email. If your phone picks up your email, you can listen to a message without having to dial in.&nbsp; Perfect.</p>

<p></p><div id="attachment_1807" style="width: 487px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1807" class="size-full wp-image-1807" title="MP3 Email" src="https://shkspr.mobi/blog/wp-content/uploads/2010/03/MP3-Email.jpg" alt="MP3 Email" width="477" height="566"><p id="caption-attachment-1807" class="wp-caption-text">MP3 Email</p></div><p></p>

<h3 id="mobi-site"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#mobi-site">.mobi site.</a></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.&nbsp; There's a hidden mobile site - <a href="https://web.archive.org/web/20100304083536/http://m.ribbit.com/">m.ribbit.com/</a> which gives you direct access to your transcriptions.&nbsp; It even lets you dial in to a message or return a call directly from the web site.</p>

<p></p><div id="attachment_1805" style="width: 477px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1805" class="size-full wp-image-1805" title="Mobile Ribbit" src="https://shkspr.mobi/blog/wp-content/uploads/2010/03/Mobile-Ribbit.png" alt="Mobile Ribbit" width="467" height="490"><p id="caption-attachment-1805" class="wp-caption-text">Mobile Ribbit</p></div><p></p>

<h3 id="personal-api"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#personal-api">Personal API.</a></h3>

<blockquote><p>I’d like access to an API for personal use.&nbsp; To enable  me to generate <a href="https://web.archive.org/web/20100305125700/http://www.wordle.net/">wordles </a>or  similar.&nbsp; To grab all the voicemails from a particular person or  containing a certain phrase.</p></blockquote>

<p>It's there! <a href="https://web.archive.org/web/20100309102422/http://developer.ribbit.com/">developer.ribbit.com/</a>- I need to dig around to see what can be done.</p>

<h3 id="personalised-greetings"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#personalised-greetings">Personalised Greetings.</a></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't see a way to do this.&nbsp; It should be possible.&nbsp; Once I'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!&nbsp; You can record as many greetings as you like - you can even use your computer's microphone.&nbsp; You can swap them over on the web - I've not found a way to do it either via IVR or mobile web.</p>

<h3 id="direct-dial-voicemail"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#direct-dial-voicemail">Direct Dial Voicemail.</a></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.&nbsp; A minor concern.</p>

<h2 id="website"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#website">Website</a></h2>

<p>Ribbit has an incredibly feature packed website.&nbsp; 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>

<p></p><div id="attachment_1814" style="width: 460px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1814" class="size-full wp-image-1814" title="Ribbit Web Control Panel" src="https://shkspr.mobi/blog/wp-content/uploads/2010/03/Ribbit-Web-Control-Panel.png" alt="Ribbit Web Control Panel" width="450" height="146"><p id="caption-attachment-1814" class="wp-caption-text">Ribbit Web Control Panel</p></div><p></p>

<p>You can also see missed calls. This is wonderfully useful. If you're out of coverage, your phone won't ring. Once you're back in coverage, you can get a text or email from Ribbit telling you who rang but didn't leave a message.</p>

<h2 id="shortcomings"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#shortcomings">Shortcomings</a></h2>

<p>Nothing in this world is perfect - let's look at what Ribbit does badly.</p>

<h3 id="startup"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#startup">Startup</a></h3>

<p>The welcome text is very poorly done...</p>

<p></p><div id="attachment_1806" style="width: 490px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1806" class="size-full wp-image-1806" title="Ribbit Welcome SMS" src="https://shkspr.mobi/blog/wp-content/uploads/2010/03/Ribbit-Welcome-SMS.jpg" alt="Ribbit Welcome SMS" width="480" height="320"><p id="caption-attachment-1806" class="wp-caption-text">Ribbit Welcome SMS</p></div><p></p>

<p>Coming from an unknown number, oddly formatted and no link to the mobile portal. The link presented doesn't render well on mobile either.</p>

<p>You only get one chance to make a first impression - sadly Ribbit's first impression is of carelessness.</p>

<h3 id="accuracy"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#accuracy">Accuracy</a></h3>

<p>Always a tricky one to get right.&nbsp; Take a listen to this MP3 and compare it to the transcribed text.
</p><figure class="audio">
	<figcaption>🔊 Ribbit Transcription Test<br>🎤 edent</figcaption>
	
	<audio controls="" loading="lazy" src="https://shkspr.mobi/blog/wp-content/uploads/2010/03/104289.mp3">
		<p>💾 <a href="https://shkspr.mobi/blog/wp-content/uploads/2010/03/104289.mp3">Download this audio file</a>.</p>
	</audio>
</figure><p></p>

<blockquote><p>Hi, Terry. It's Mom. We're just about to go over to have a cruise in Hong Kong. It's the most beautiful place I've ever seen. I'm just knocked out. Anyway, we'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!&nbsp; I put this under shortcomings because of the American translation of "Mum" to "Mom".</p>

<h3 id="timezones"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#timezones">Timezones</a></h3>

<p>When your servers are in one country and your users are in another, date- and time-stamps become really important.</p>

<p></p><div id="attachment_1805" style="width: 477px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1805" class="size-full wp-image-1805" title="Mobile Ribbit" src="https://shkspr.mobi/blog/wp-content/uploads/2010/03/Mobile-Ribbit.png" alt="Mobile Ribbit" width="467" height="490"><p id="caption-attachment-1805" class="wp-caption-text">Mobile Ribbit</p></div><p></p>

<p>The timestamps in the mobile web version are several hours out.&nbsp; A minor annoyance - but one which gives people a headache trying to work out why someone is calling you at 6AM!</p>

<h3 id="qa"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#qa">QA</a></h3>

<p>Notice the "Call Voicemail" link in the image above?</p>

<p></p><div id="attachment_1803" style="width: 490px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1803" class="size-full wp-image-1803" title="Ribbit Mobile Error" src="https://shkspr.mobi/blog/wp-content/uploads/2010/03/Ribbit-Mobile-Error.jpg" alt="Ribbit Mobile Error" width="480" height="320"><p id="caption-attachment-1803" class="wp-caption-text">Ribbit Mobile Error</p></div><p></p>

<p>It's pointing to - I presume - the US dial in number, not the UK one.&nbsp; There are several little errors like this.&nbsp; None of them critical, but all enough to remind you it's in Beta.</p>

<h2 id="conclusion"><a href="https://shkspr.mobi/blog/2010/03/ribbit-voicemail/#conclusion">Conclusion</a></h2>

<p>Ribbit is close to perfect. It blows SpinVox out of the water in terms of voicemail functionality.</p>

<p>It's accuracy is good - and it's upfront about its transcription methods.&nbsp; It even lets you sacrifice accuracy for confidentiality if you'd rather just have machines listening in.</p>

<p>What will make it sink or swim is its <a href="https://web.archive.org/web/20100316132037/http://www.ribbit.com/mobile/plans-pricing.php">pricing</a>.&nbsp; Free during beta, it'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's missing a few "nice to haves" - 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 - but it is functional.</p>

<p>I highly recommend you <a href="https://web.archive.org/web/20100317015415/http://www.ribbit.com/mobile/">sign up for the beta of Ribbit</a>.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=1802&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/03/ribbit-voicemail/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		<enclosure url="https://shkspr.mobi/blog/wp-content/uploads/2010/03/104289.mp3" length="223360" type="audio/mpeg" />

			</item>
	</channel>
</rss>
