All Projects → kickstarter → caption_crunch

kickstarter / caption_crunch

Licence: MIT license
Parsers for WebVTT and other subtitle files

Programming Languages

ruby
36898 projects - #4 most used programming language

CaptionCrunch

Gem Version Circle CI Code Climate

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

  1. Fork it ( https://github.com/kickstarter/caption_crunch/fork )
  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 a new Pull Request
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].