fbvideo 0.3.2

Library to get video URLs from Facebook
Documentation

fbvideo

Library to get video URLs from Facebook.

Documentation

Examples

use fbvideo::{FbVideo, Quality};
fn main() {
    let mut fb = FbVideo::new(
        "https://www.facebook.com/817131355292571/videos/2101344733268123/",
        Quality::Hd,
    );
    match fb.get_video_url() {
        Ok(url) => println!("{:?}", url),
        Err(e) => panic!("{:?}", e),
    }
}