youtube-dl-rs icon indicating copy to clipboard operation
youtube-dl-rs copied to clipboard

A youtube-dl wrapper for Rust

Results 14 youtube-dl-rs issues
Sort by recently updated
recently updated
newest added

Hello, I was looking for a way to get the Formats. I saw that there was a function for the -f (fn formats in lib.rs:323) But I dont find a...

https://github.com/GyrosOfWar/youtube-dl-rs/issues/38 ```rs let video = YoutubeDl::new(channel_url) .socket_timeout("15") .run() .unwrap() .into_single_video() .unwrap(); println!("subscribers count: {}", video.channel_follower_count.unwrap()); ```

`download_to` returns `Ok(())` even when the download actually failed (`!exit_code.success()`). I'm not sure the reason behind this so left it intact. But for easier debugging for users, I changed it...

I've been testing the wrapper and came across an issue where a video with id `C48bGnImM5s` never downloads fully. Any sync or async download method I use exits by the...