@jswork/next-srt

Parse srt subtitle content for next.

Usage no npm install needed!

<script type="module">
  import jsworkNextSrt from 'https://cdn.skypack.dev/@jswork/next-srt';
</script>

README

next-srt

Parse srt subtitle content for next.

version license size download

installation

npm install -S @jswork/next-srt

usage

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.'
  },
*/

license

Code released under the MIT license.