bullfrog-ruby
-=============
A ruby library for the bullfrog text-to-speech API.
Bullfrog
TODO: Write a gem description
Installation
Add this line to your application's Gemfile:
gem 'bullfrog'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bullfrog
Usage
Bullfrog.api_key = "your_api_key_here"
tts = Bullfrog::TTS.convert("Hello world!")
tts.status # Status will be "pending" until the audio file starts processing
!# Once the conversion is complete, the audio url will be available!
if tts.status == "complete"
url = tts.audio_url
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request