1.0.2 • Published 7 months ago

youtube-videos-downloader-tool v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

YouTube Video Downloader

A simple Node.js package to download YouTube videos using yt-dlp.

Installation

npm i youtube-videos-downloader-tool

Usage

const { downloadYouTubeVideo } = require('youtube-videos-downloader-tool');

// Example YouTube URL
const url = 'https://www.youtube.com/watch?v=BIINqfBOz1c';

downloadYouTubeVideo(url)
  .then(result => {
    console.log(result);
  })
  .catch(error => {
    console.error('Error downloading video:', error);
  });
1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago