Parse srt subtitle content for next.
npm install -S @jswork/next-srt
import '@jswork/next-srt';
const str = `1
00:00:04,066 --> 00:00:12,016
We can read of things that happened 5,000 years ago in the Near East, where people first learned to write.
2
00:00:12,432 --> 00:00:17,601
But there are some parts of the world where even now people cannot write.
`
nx.srt(str);
/*
[
{
start: 4066,
end: 12016,
duration: 7950,
times: [ '00:00:04,066', '00:00:12,016' ],
value: 'We can read of things that happened 5,000 years ago in the Near East, where people first learned to write.'
},
{
start: 12432,
end: 17601,
duration: 5169,
times: [ '00:00:12,432', '00:00:17,601' ],
value: 'But there are some parts of the world where even now people cannot write.'
},
*/
Code released under the MIT license.