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

matroska-subtitles

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

matroska-subtitles

Writable stream for parsing embedded .mkv subtitles.

  • 2.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
36
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

matroska-subtitles npm dependencies license

Writable stream for parsing embedded .mkv subtitles.

Supported formats: .srt, .ssa, .ass.

install

npm install matroska-subtitles

example

const fs = require('fs')
const MatroskaSubtitles = require('matroska-subtitles')

var parser = new MatroskaSubtitles()

// first an array of subtitle track information is emitted
parser.once('tracks', function (tracks) {
  console.log(tracks)
})

// afterwards each subtitle is emitted
parser.on('subtitle', function (subtitle, trackNumber) {
  console.log('Track ' + trackNumber + ':', subtitle)
})

fs.createReadStream('Sintel.2010.720p.mkv').pipe(parser)

See examples folder for more examples.

tracks event response format

[
  { number: 3, language: 'eng', type: 'utf8' },
  { number: 4, language: 'jpn', type: 'ass', header: '[Script Info]\r\n...' }
]

Note that the language may be undefined if the mkv track doesn't specify it.

subtitle event response format

{
  text: 'This blade has a dark past.',
  time: 107250,  // ms
  duration: 1970 // ms
}

May also contain additional .ass specific values

random access

The parser must obtain the tracks metadata event before it can begin to emit subtitles. To read subtitles from a specific position in the stream, you can pass in a previous instance as parameter: parser = new MatroskaSubtitles(parser) after the tracks event and pipe from a given position. See examples/random-access.js for an example.

see also

mkv-subtitle-extractor

license

MIT

Keywords

FAQs

Package last updated on 10 Sep 2020

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