youtube-captions-scraper-yoyota

1.0.2-alpha.3 • Public • Published

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
}

/youtube-captions-scraper-yoyota/

    Package Sidebar

    Install

    npm i youtube-captions-scraper-yoyota

    Weekly Downloads

    3

    Version

    1.0.2-alpha.3

    License

    MIT

    Unpacked Size

    10.7 kB

    Total Files

    10

    Last publish

    Collaborators

    • yoyota