bitreel 0.1.1

A library for getting video information from YouTube and other similar sites.
Documentation
1
2
3
4
5
6
7
8
9
mod youtube;

pub use video::youtube::YoutubeVideo;

pub trait Video {
    fn title(&self) -> &str;
    fn get_url(&self, format: &str) -> Option<&str>;
    fn list_formats<'a>(&'a self) -> Box<Iterator<Item=&'a str> + 'a>;
}