#youtube #content #metadata #downloader #rust

rafy

Rust library to download YouTube content and retrieve metadata

12 releases

Uses old Rust 2015

0.2.1 Apr 2, 2018
0.2.0 Jul 23, 2017
0.1.9 Jul 14, 2017

#190 in Value formatting

Download history 1/week @ 2024-02-07 9/week @ 2024-02-14 52/week @ 2024-02-21 60/week @ 2024-02-28

122 downloads per month
Used in yt_downloader

MIT license

19KB
234 lines

rafy

Rust Toolchain Crates.io Docs.rs Build Status

Rust library to fetch YouTube content and retrieve metadata. An attempt to mimic pafy but in Rust.

Installation

Put the below in your Cargo.toml

[dependencies]

rafy = "0.2"

Usage Examples

extern crate rafy;
use rafy::Rafy;

fn main() {
    let content = Rafy::new("https://www.youtube.com/watch?v=DjMkfARvGE8").unwrap();
    println!("{}", content.videoid);
    println!("{}", content.title);
    println!("{}", content.rating);
    println!("{}", content.viewcount);
}

For more examples check out the Documentation.

Limitations

  • This library won't be able to fetch audiostreams and videostreams for unpopular videos, because YouTube does not generate separate streams for unpopular videos. However, it will still be able to fetch normal streams.

  • Since this library does not depend on youtube-dl, there are some more things (not mentioning here) that we'll be missing out.

Running Tests

$ cargo test

Contributing

  • Rust is still new to me. If there is anything that can be improved, please open an issue or even better, send a PR! 😄

  • Documentation improvements are also most welcome!

Thanks

The basic method of extracting streams was stolen from rust-youtube-downloader by smoqadam.

License

The MIT License

Dependencies

~8–17MB
~256K SLoC