You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

quickyt

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

quickyt

This package transcribes and summarizes YouTube videos using GPT-3.

1.0.1
unpublished
latest
npm
Version published
Weekly downloads
0
Maintainers
0
Weekly downloads
 
Created
Source

quickyt

This package transcribes and summarizes YouTube videos using GPT-3.

How to use

Install the package:

npm i quickyt

Available Languages

The following languages are supported for summarization:

  • en: English
  • pt: Portuguese
  • es: Spanish
  • fr: French
  • de: German
  • it: Italian
  • nl: Dutch
  • ru: Russian

Example

import { summarizeVideo } from 'quickyt';

const videoUrl = 'https://youtu.be/EG7Ey3VLP3M?si=fshmOzAMt5KRkiVI';
const lang = 'en';

(async () => {
    try {
        const summary = await summarizeVideo({ videoUrl, lang });
        console.log('Corrected summary:', summary);
    } catch (error) {
        console.error(error.message);
    }
})();

Keywords

ai

FAQs

Package last updated on 27 Aug 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