yt-dlp 2.7.2

🎬️ A Rust library (with auto dependencies installation) for Youtube downloading
Documentation
1
2
3
4
5
6
7
8
9
10
//! Download engine internals.
//!
//! This module contains the core download engine components: HTTP fetching,
//! segment-based parallel downloads, range request support, and partial downloads.

pub mod fetcher;
mod parallel;
pub mod partial;
pub mod range_fetcher;
pub mod segment;