Ruby wrapper for Loquendo TTS
Add this line to your application's Gemfile:
gem 'loquendo-wrapper'
And then execute:
$ bundle
Or install it yourself as:
$ gem install loquendo-wrapper
require "loquendo"
data = Loquendo.convert("the book is on the table")
file = File.new("/tmp/sound.alaw", "w")
file.write(data)
file.close
Copyright (c) 2012 Patrick Ximenes. MIT licence (see LICENSE for details).