youtube-videos-downloader-tool
v1.0.2
Published
A simple Node.js package to download YouTube videos using yt-dlp
Downloads
15
Maintainers
Readme
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);
});