Convert .srt subtitle files to JavaScript objects
npm i @johnny.reina/convert-srt
The main export of this package. Accepts the string contents of a .srt
file and returns an array of Subtitle
objects.
Accepts an array of Subtitle
objects and returns a WebVTT string.
interface Subtitle {
index: number;
from: string;
to: string;
text: string;
}