Skip to content

Easily convert YouTube caption format from XML to SRT with zero dependencies

License

Notifications You must be signed in to change notification settings

Aasim-A/yt-xml2srt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yt-xml2srt

A tiny module to easily convert YouTube caption format from XML to SRT with ZERO dependencies.

npm package

Installation

npm i -S yt-xml2srt

Or for Yarn users:

yarn add yt-xml2srt

Usage

Using Promises:

const xml2srt = require('yt-xml2srt');

xml2srt.Parse(xmlString)
  .then(srt => /* DO SOMETHING WITH SRT */)
  .catch(err => console.log(`Error while converting XML to SRT : ${err}`));

Or you can use async await

const xml2srt = require('yt-xml2srt');

const srt = await xml2srt
  .Parse(xmlString)
  .catch(err => console.log(`Error while converting XML to SRT : ${err}`));
/* DO SOMETHING WITH SRT */

Using it synchronously:

const xml2srt = require('yt-xml2srt');

try {
  const srt = xml2srt.ParseSync(xmlString);
  /* DO SOMETHING WITH SRT */
} catch (err) {
  console.log(`Error while converting XML to SRT : ${err}`);
}

Tests

npm test

Releases

No releases published

Packages

No packages published