New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

subtitles-parser

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

subtitles-parser

NodeJS Parser for SubRip subtitles

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

subtitles-parser

Simple module written in javascript, which provides SubRip subtitles parsing methods

Installation:

NodeJS:

npm install subtitle-parser

or download minified version of subtitle-parser to use module in a browser

Example

Let's say we have my.srt SubRip subtitles file:

1
00:00:02,000 --> 00:00:06,000
Subtitle 1.1
Subtitle 1.2

2
00:00:28,967 --> 01:30:30,958
Subtitle 2.1
Subtitle 2.2
  1. Load file into data variable
var fs = require('fs');
var srt = fs.readFileSync('my.srt');

var data = parser.fromSrt(srt);

data object will look like:

[{
    id: '1',
    startTime: '00:00:02,000',
    endTime: '00:00:06,000',
    text: 'Subtitle 1.1\nSubtitle 1.2' 
},
{
    id: '2',
    startTime: '00:00:28,967',
    endTime: '01:30:30,958',
    text: 'Subtitle 2.1\nSubtitle 2.2'
}]

if you will pass true flag to fromSrt function:

var dataMs = parser.fromSrt(srt, true);

then it will convert startTime and endTime properties into millisecods:

[{
    id: '1',
    startTime: 2000,
    endTime: 6000,
    text: 'Subtitle 1.1\nSubtitle 1.2' 
},
{
    id: '2',
    startTime: 28967,
    endTime: 5430958,
    text: 'Subtitle 2.1\nSubtitle 2.2'
}]

parser.toSrt() will convert object back to SubRip subtitles format.

Keywords

FAQs

Package last updated on 17 Oct 2013

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