ass-to-vtt

v1.2.0
Transform stream that converts ass files to vtt files (html5 video subtitles)
html5 video subtitles

ass-to-vtt

Based on @mafintosh's work on srt-to-vtt.

Transform stream that converts ass files to vtt files. vtt files are used to provide subtitles in html5 video

npm install ass-to-vtt

Usage

var ass2vtt = require('ass-to-vtt')
var fs = require('fs')

fs.createReadStream('some-subtitle-file.ass')
  .pipe(ass2vtt())
  .pipe(fs.createWriteStream('some-html5-video-subtitle.vtt'))

Command line usage

There is also a command line tool available

npm install -g ass-to-vtt
ass-to-vtt --help

License

MIT

npm i ass-to-vtt

Metadata

  • MIT
  • Whatever
  • James Sigurdarson
  • released 4/26/2018

Downloads

Maintainers