
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
srtparsejs
Advanced tools
A javascript srt text parser and player.
$ npm install srtparsejs
or
$ yarn add srtparsejs
import * as srtparsejs from "srtparsejs"; // cjs
const srtparsejs = require('srtparsejs'); // esm
let srt = `
1
00:00:11,544 --> 00:00:12,682
Hello
`
let parsed = srtparsejs.parse(srt)
console.log(parsed)
/*
[{
id: '1',
startTime: '00:00:11,544',
endTime: '00:00:12,682',
text: 'Hello'
}]
*/
let srtString = srtparsejs.toSrt(parsed)
console.log(srtString)
/*
1
00:00:11,544 --> 00:00:12,682
Hello
`
*/
// Display the text of each subtitle by time
let srtPlayer = srtparsejs.setPlayer(parsed, text=>{
console.log(text)
})
// Move player to this time
srtPlayer.update("00:00:11,544")
// Get subtitle end time
console.log(srtPlayer.getEndTime())
//control the player
let pause = false
//srt player check interval
let interval = 100
//parse srt
let srtArray = srtparsejs.parse(srt)
//start millisecond
let ms = 0
//create player
let player = srtparsejs.setPlayer(srtArray, text => {
//here to display the text
console.log(text)
})
//update srt player time
setInterval(() => {
if (pause) return;
ms += interval
//update to specific time
player.update(srtparsejs.toTime(ms))
}, interval)
FAQs
A javascript srt text parser and player.
The npm package srtparsejs receives a total of 26 weekly downloads. As such, srtparsejs popularity was classified as not popular.
We found that srtparsejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.