Package Exports
- subtitle
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (subtitle) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
subtitle.js
Parse, manipulate and stringify SRT (SubRip) format. WebVTT as input is also supported.
"Thanks for this rad package!"
John-David Dalton, creator of Lodash
Installation
npm install subtitle --save
For browser usage, you can copy the script subtitle.browser.js
from the browser folder.
API
The API is minimal and provide only five functions:
// ES6
const { parse, stringify, resync, toMS, toSrtTime } = require('subtitle')
// ES5
var subtitle = require('subtitle')
subtitle.parse
subtitle.stringify
subtitle.resync
subtitle.toMS
subtitle.toSrtTime
// Global
window.Subtitle.parse
window.Subtitle.stringify
window.Subtitle.resync
window.Subtitle.toMS
window.Subtitle.toSrtTimeparse(srt: String) -> Array
Parses a SRT or WebVTT string and returns an array:
parse(mySrtOrVttContent)
[
{
start: 20000, // time in ms
end: 24400,
text: 'Bla Bla Bla Bla'
},
{
start: 24600,
end: 27800,
text: 'Bla Bla Bla Bla',
settings: 'align:middle line:90%' // WebVTT only
}
]stringify(captions: Array) -> String
The reverse of parse. It gets an array with subtitles and converts it to a valid SRT string.
const subtitles = [
{
start: '00:00:20,000',
end: '00:00:24,400',
text: 'Bla Bla Bla Bla'
},
{
start: 24600, // timestamp in milliseconds is supported as well
end: 27800,
text: 'Bla Bla Bla Bla'
}
]
const srt = stringify(subtitles)
// returns the following string:
/*
1
00:00:20,000 --> 00:00:24,400
Bla Bla Bla Bla
2
00:00:24,600 --> 00:00:27,800
Bla Bla Bla Bla
*/resync(captions: Array, time: Number) -> Object
Resync all captions at once.
const subtitles = [
{
start: '00:00:20,000',
end: '00:00:24,400',
text: 'Bla Bla Bla Bla'
},
{
start: 24600, // timestamp in millseconds is supported as well
end: 27800,
text: 'Bla Bla Bla Bla'
}
]
// Advance 1s
const newSubtitles = resync(subtitles, 1000)
// Delay 250ms
const newSubtitles = resync(subtitles, -250) //
// Then, you can stringify your new subtitles:
stringify(newSubtitles)toMS(timestamp: String) -> Number
Convert a SRT or WebVTT timestamp to milliseconds:
toMS('00:00:24,400')
// 24400
toMS('00:24.400')
// 24400toSrtTime(timestamp: Number) -> String
Convert a time from milliseconds to a SRT timestamp:
toSrtTime(24400)
// '00:00:24,400'Tests
Subtitle.js uses AVA for running tests and nyc for code coverage.
If you want to run these tests, you need to install all devDependencies:
npm install
Now you can run the tests with the following command:
npm test
Code Coverage
You can check the code coverage by running the following command:
npm run coverage
If you want a pretty HTML report, run the following:
npm run report
Your report will be available in the coverage folder.
License
MIT