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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request