VoiceBase Ruby SDK

Gem Version Build Status Dependency Status Code Climate Scrutinizer Code Quality Downloads Docs License

Overview

Transcribe audio using VoiceBase.com service.

Installation

Via Bundler

Add 'voicebase' to Gemfile and then run bundle:

$ echo "gem 'voicebase'" >> Gemfile
$ bundle

Via RubyGems

$ gem install voicebase

Usage

From Filepath

voicebase = VoiceBase::V1::Client.new('myApiKey', 'myPassword')

voicebase.upload_media(
  :filePath => '/path/to/myFile.mp3'
  :fileContentType => 'audio/mpeg'
)

From URL

voicebase = VoiceBase::V1::Client.new('myApiKey', 'myPassword')

voicebase.upload_media(
  :mediaUrl => 'http://example.com/path/to/myFile.mp3'
)

Change Log

See CHANGELOG.md

Contributions

Any reports of problems, comments or suggestions are most welcome.

Please report these on Github

License

MIMEBuilder is available under an MIT-style license. See LICENSE.txt for details.

MIMEBuilder © 2016 by John Wang