Library to get video URLs from Facebook.
```rust use fbvideo::{FbVideo, Quality};
async fn main() { let mut fb = FbVideo::new( "https://www.facebook.com/817131355292571/videos/2101344733268123/", Quality::Hd, ); match fb.getvideourl().await { Ok(url) => println!("{:?}", url), Err(e) => panic!("{:?}", e), } } ```