Maxime Janton 5d78891abe Merge pull request #1 from algolia/remove-font-tag
fix: remove font tags
2017-11-27 10:43:04 +01:00
2017-11-24 10:29:06 -05:00
2017-11-22 10:32:01 +01:00
2017-11-22 10:32:01 +01:00
2017-11-22 10:32:01 +01:00
2017-11-24 10:29:06 -05:00
2017-11-22 12:24:33 +01:00
2017-11-22 10:32:01 +01:00

Youtube Captions scraper

Fetch youtube user submitted or fallback to auto-generated captions

Installation

  • > npm install -S youtube-captions-scraper OR
  • > yarn add youtube-captions-scraper

Usage

// ES6 / TypeScript
import { getSubtitles } from 'youtube-captions-scraper';

getSubtitles({
  videoID: 'XXXXX', // youtube video id
  lang: 'fr' // default: `en`
}).then(captions => {
  console.log(captions);
});

// ES5
var getSubtitles = require('youtube-captions-scraper').getSubtitles;

getSubtitles({
  videoID: 'XXXXX', // youtube video id
  lang: 'fr' // default: `en`
}).then(function(captions) {
  console.log(captions);
});

Captions will be an array of object of this format:

{
  "start": Number,
  "dur": Number,
  "text": String
}
Description
Fetch youtube user submitted or fallback to auto-generated captions
Readme 193 KiB
Languages
JavaScript 100%