CaptionCrunch
Praise @noopkat for the name.
Installation
Add this line to your application's Gemfile:
gem 'caption_crunch'
And then execute:
$ bundle
Or install it yourself as:
$ gem install caption_crunch
Usage
require 'caption_crunch'
track = CaptionCrunch.parse(File.new('sample.vtt')) # returns a CaptionCrunch::Track instance
# or
track = CaptionCrunch.parse('WEBVTT')
# track.cues is an array of CaptionCrunch::Cue instances
track.cues.first.start_time
track.cues.first.end_time
track.cues.first.payload
Contributing
- Fork it ( https://github.com/kickstarter/caption_crunch/fork )
- 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 a new Pull Request