Skip to content

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

License

Notifications You must be signed in to change notification settings

jamiees2/ass-to-vtt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •