0.1.1 • Published 8 years ago

vtt-to-json v0.1.1

Weekly downloads
556
License
MIT
Repository
github
Last release
8 years ago

vtt-to-json Build Status

Convert WebVTT file to JSON

Install

$ npm install --save vtt-to-json

Usage

const vttToJson = require("vtt-to-json")

let vttString = '...';

vttToJson(vttString)
.then((result) => {
  console.log(result)
});

Test

$ npm test

API

vttToJson(vttString)

What does this method do?

NameTypeDescription
vttStringStringA string representing the vtt you want to convert.

returns Promise that passed the vtt json value.

const vttToJson = require("vtt-to-json")

let vttString = '...';

vttToJson(vttString)
.then((result) => {
  console.log(result)
});

License

MIT © Joe Gesualdo