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
11
//! Download pipeline steps.
//!
//! This module contains the sequential steps of the download pipeline:
//! fetching video info, downloading streams, combining audio+video,
//! partial/clip downloads, and playlist iteration.

pub mod combine;
pub mod download;
pub mod fetch;
pub mod partial;
pub mod playlist;