rip-subtitles
Rip subtitles from video files
This module requires ffmpeg
Install
$ npm install --save rip-subtitles
Usage
var ripSubtitles = ;var fs = ; ; // or if streams are your thing ;
API
ripSubtitles(filename, [options], [callback])
filename
Required
Type string
Path to the video file
options
Type object
Subtitle options
lang
Type string
Default eng
The chosen language - e.g. eng
format
Type string
Default srt
The subtitle format - e.g. srt
, webvtt
callback
Type function
A callback function - if not present a stream is returned
CLI
Usage $ rip-subtitles <input-file> > <output-file> Options -l, --lang Subtitle language -f, --format Format of subtitles Example $rip-subtitles clip.mkv > subs.srt
Formats
Formats available depend on your ffmpeg
version, for a list use the following command
$ ffmpeg -formats | grep "subtitle"
License
MIT