![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
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.toStr(data)
or parser.toStr(dataMs) will convert object back to SubRip subtitles format.
FAQs
NodeJS Parser for SubRip subtitles
The npm package subtitles-parser receives a total of 5,308 weekly downloads. As such, subtitles-parser popularity was classified as popular.
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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.