Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
yt-dlp-video
Advanced tools
A robust video downloader built on yt-dlp for downloading and processing video content from various sources.
🎥 The most reliable Node.js video downloader powered by yt-dlp
Download videos from YouTube and 1000+ sites with just a few lines of code! Zero configuration required - we handle the yt-dlp installation automatically.
npm install yt-dlp-video
That's it! No need to install yt-dlp separately - everything is handled automatically.
const { downloadVideo } = require('yt-dlp-video');
// Download video in best quality MP4 format
await downloadVideo('https://www.youtube.com/watch?v=VIDEO_ID');
await downloadVideo('https://youtube.com/watch?v=VIDEO_ID', {
outputDir: './downloads', // Where to save the video
format: 'mp4', // Video format
quality: 'best', // Video quality
filename: 'my-video' // Custom filename (without extension)
});
try {
const result = await downloadVideo('https://youtube.com/watch?v=VIDEO_ID', {
outputDir: './videos'
});
console.log('✅ Download complete!');
} catch (error) {
console.error('❌ Download failed:', error);
}
// Console output:
// 📥 Download progress: 23.5%
// 📥 Download progress: 47.2%
// 📥 Download progress: 89.7%
// ✅ Download progress: 100%
Option | Type | Default | Description |
---|---|---|---|
outputDir | string | Current directory | Directory where videos will be saved |
format | string | 'mp4' | Video format (mp4, webm, etc.) |
quality | string | 'best' | Video quality (best, worst, or specific resolution) |
filename | string | Video title | Custom filename (without extension) |
Download videos from popular platforms including:
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
FAQs
A robust video downloader built on yt-dlp for downloading and processing video content from various sources.
The npm package yt-dlp-video receives a total of 5 weekly downloads. As such, yt-dlp-video popularity was classified as not popular.
We found that yt-dlp-video demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.