m3u8-rs/examples/simple.rs

17 lines
500 B
Rust
Raw Normal View History

use m3u8_rs::Playlist;
2016-06-03 18:56:45 +00:00
use std::io::Read;
fn main() {
let mut file = std::fs::File::open("playlist.m3u8").unwrap();
let mut bytes: Vec<u8> = Vec::new();
file.read_to_end(&mut bytes).unwrap();
let parsed = m3u8_rs::parse_playlist_res(&bytes);
match parsed {
Ok(Playlist::MasterPlaylist(pl)) => println!("Master playlist:\n{:?}", pl),
Ok(Playlist::MediaPlaylist(pl)) => println!("Media playlist:\n{:?}", pl),
2021-10-18 09:41:28 +00:00
Err(e) => println!("Error: {:?}", e),
2016-06-03 18:56:45 +00:00
}
}