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
//! Format-specific metadata writers.
//!
//! This module contains metadata writers for different audio/video formats:
//! FFmpeg-based writing, Lofty-based writing, MP3-specific, and MP4-specific.

pub mod ffmpeg;
pub mod lofty;
pub mod mp3;
pub mod mp4;