Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
subtitles-parser
Advanced tools
Simple module written in javascript, which provides SubRip subtitles parsing methods
NodeJS:
npm install subtitle-parser
or download minified version of subtitle-parser to use module in a browser
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
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.
FAQs
NodeJS Parser for SubRip subtitles
We found that subtitles-parser 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.