
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
hybrid-ytdl
Advanced tools
Hybrid YouTube Downloader berbasis multiple API yang otomatis switch jika salah satu server down.
Mendukung download audio & video dengan opsi bitrate & resolusi, serta bisa memilih API secara manual.
npm install hybrid-ytdl
API | Nama | Dukungan | Fetch? |
---|---|---|---|
API 1 | CloudkuImages | Audio & Video | ✅ |
API 2 | NVL Group | Audio & Video | ❌ |
API 3 | CaliphDev | Audio & Video | ✅ |
API 4 | SiputzX | Audio & Video | ✅ |
API 5 | SuraWeb | Audio | ❌ |
Catatan:
✅ API 2 & API 5 langsung return URL tanpa fetch JSON, jadi lebih cepat.
✅ API lain perlu fetch JSON dulu untuk dapatkan URL downloadnya.
const { getVideoInfo } = require('hybrid-ytdl');
(async () => {
let info = await getVideoInfo("https://youtube.com/watch?v=kglEsR7bqAY");
console.log(info);
})();
📈 Output Contoh
{
"status": true,
"title": "Story Teaser: La vaguelette | Genshin Impact",
"creator": "Genshin Impact",
"duration": 159,
"thumbnail": "https://i.ytimg.com/vi/kglEsR7bqAY/hq720.jpg",
"views": 5674285,
"uploaded": "3 bulan lalu",
"url": "https://youtube.com/watch?v=kglEsR7bqAY"
}
const { downloadAudio } = require('hybrid-ytdl');
(async () => {
let audio = await downloadAudio("https://youtube.com/watch?v=kglEsR7bqAY", "320", "api2"); // Pakai API 2 & bitrate 320kbps
console.log(audio);
})();
📈 Output Contoh
{
"status": true,
"downloadUrl": "https://ytdownloader.nvlgroup.my.id/audio?url=kglEsR7bqAY&bitrate=320",
"source": "API 2: Nauval Group"
}
📅 Catatan:
api1
, api2
, ..., api5
), atau kosong untuk otomatis.const { downloadVideo } = require('hybrid-ytdl');
(async () => {
let video = await downloadVideo("https://youtube.com/watch?v=kglEsR7bqAY", "1080", "api2"); // Pakai API 2 & resolusi 1080p
console.log(video);
})();
📈 Output Contoh
{
"status": true,
"downloadUrl": "https://ytdownloader.nvlgroup.my.id/download?url=kglEsR7bqAY&resolution=1080",
"source": "API 2: Nauval Group"
}
📅 Catatan:
api1
, api2
, ..., api5
), atau kosong untuk otomatis.Opsi | API yang dipakai |
---|---|
Bitrate/Resolusi Default | Semua API bisa digunakan |
Bitrate/Resolusi Custom | Hanya API 2: Nauval Group & API 1: Cloudkuimages yang dipakai |
Pilih API Manual | Hanya API yang dipilih akan digunakan |
Otomatis | API akan berpindah jika server gagal |
MIT License
2025 hybrid-ytdl
FAQs
Download youtube url from 5 server rest api
The npm package hybrid-ytdl receives a total of 602 weekly downloads. As such, hybrid-ytdl popularity was classified as not popular.
We found that hybrid-ytdl demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.