Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ass-to-vtt

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ass-to-vtt

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

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
28
increased by21.74%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

FAQs

Package last updated on 26 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc