17 releases (9 breaking)

0.10.0 Apr 16, 2024
0.9.0 Aug 20, 2023
0.8.1 May 20, 2023
0.8.0 Jan 22, 2023
0.1.1 Aug 9, 2019

#27 in Video

Download history 112/week @ 2024-01-02 163/week @ 2024-01-09 172/week @ 2024-01-16 183/week @ 2024-01-23 214/week @ 2024-01-30 137/week @ 2024-02-06 241/week @ 2024-02-13 193/week @ 2024-02-20 326/week @ 2024-02-27 244/week @ 2024-03-05 260/week @ 2024-03-12 391/week @ 2024-03-19 288/week @ 2024-03-26 361/week @ 2024-04-02 307/week @ 2024-04-09 547/week @ 2024-04-16

1,539 downloads per month
Used in 2 crates

MIT/Apache

55KB
1.5K SLoC

youtube-dl-rs

Crates.io

NOTE: The name for this library is a bit misleading, it currently does not support youtube-dl as its development seems to be very slow recently, it does support yt-dlp, which has diverged from youtube-dl in some ways, but sees a lot more development.

Runs yt-dlp and parses its JSON output. Example:

use youtube_dl::YoutubeDl;

let output = YoutubeDl::new("https://www.youtube.com/watch?v=VFbhKZFzbzk")
  .socket_timeout("15")
  .run()
  .unwrap();
let title = output.into_single_video().unwrap().title;
println!("Video title: {}", title);

Or, if you want to it to run asynchronously (enable the feature tokio):

let output = YoutubeDl::new("https://www.youtube.com/watch?v=VFbhKZFzbzk")
    .socket_timeout("15")
    .run_async()
    .await?;
let title = output.into_single_video().unwrap().title;
println!("Video title: {}", title);
Ok(())

Feature flags

  • tokio: Enables the async variants of the run, run_raw and download_to methods.
  • downloader-native-tls / downloader-rustls-tls: Enables the download_yt_dlp method and YoutubeDlFetcher struct to download the yt-dlp executable with the given TLS backend used for reqwest.

Dependencies

~0.7–14MB
~154K SLoC