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

srt

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

srt

Parse srt subtitle files

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12K
decreased by-21.12%
Maintainers
1
Weekly downloads
 
Created
Source

srt-parser build status

Parse srt subtitle files

Example

Make sure your subtitle files comply with the SubRip file format

var srt = require("srt")

srt(fileName, function (err, data) {
    /* data looks like
    {
        "1": {
            "startTime": 20000
            , "endTime": 24000
            , "text": "Altocumulus clouds occur between six thousand"
            , number: 1
        }
        , "2": {
            "startTime": 24600
            , "endTime": 27800
            , "text": "and twenty thousand feet above ground level."
            , "number": 2
        }
        , ...
        , "subtitle number": {
            "startTime": "subtitle start time"
            , "endTime": "subtitle end time"
            , "text": "text of subtitle"
            , "number": "number of the subtitle"
        }
    }
    */
})

The file in the above example contained

1
00:00:20,000 --> 00:00:24,400
Altocumulus clouds occur between six thousand

2
00:00:24,600 --> 00:00:27,800
and twenty thousand feet above ground level.

String example

var src = require("srt").fromString
    , srtString = fs.readFileSync(fileName)

// returns same data structure as above
var data = srt(strString)

Installation

npm install srt

Tests

make test

Contributors

  • Raynos

MIT Licenced

Keywords

FAQs

Package last updated on 18 Jul 2012

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