Socket
Socket
Sign inDemoInstall

yt-transcript

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yt-transcript

A youtube transcript fetcher


Version published
Weekly downloads
123
increased by43.02%
Maintainers
1
Weekly downloads
 
Created
Source

Yt transcript

A simple JavaScript API which allows you to get the transcript/subtitles for a given YouTube video. It is inspired by a Python-based project YouTube Transcript API.

Installation

npm install yt-transcript

Usage

import { YtTranscript } from 'yt-transcript';

const ytTranscript = new YtTranscript({videoId: 'dQw4w9WgXcQ'});

ytTranscript.listAllTranscripts().then((transcript) => {
  console.log(transcript);
});

ytTranscript.getTranscript().then((transcript) => {
  console.log(transcript);
});

Important Note

This package uses the undocumented YouTube API to fetch the transcript. It is not guaranteed to work in the future. Use at your own risk. I'm not responsible for any damage caused by using this package.

License

MIT License

FAQs

Package last updated on 07 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc