youtube-captions-scraper-x

1.1.1 • Public • Published

About

Fetch original or fallback to auto-generated Youtube captions.
Based on the original youtube-captions-scraper, I made a little change to make it supports not only user-submitted but also the original captions.

Installation

npm i youtube-captions-scraper-x

Usage

const { getSubtitles } = require('youtube-captions-scraper-x');
 
(async function() {
  const captions = await getSubtitles({ videoID: 'mw5VIEIvuMI', lang: 'ja' })
  
  // do something with captions
  console.log(captions)
})();

Captions will be an array of object of this format:

{
  "start": Number,
  "duration": Number,
  "text": String
}

Readme

Keywords

none

Package Sidebar

Install

npm i youtube-captions-scraper-x

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

6.4 kB

Total Files

5

Last publish

Collaborators

  • culee