mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2024-11-26 02:11:04 +00:00
51fcb70113
There's not much else in this crate and having it behind another module decreases visibility.
35 lines
1.1 KiB
Rust
35 lines
1.1 KiB
Rust
use m3u8_rs::Playlist;
|
|
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(&bytes);
|
|
|
|
let playlist = match parsed {
|
|
Result::Ok((_i, playlist)) => playlist,
|
|
Result::Err(e) => panic!("Parsing error: \n{}", e),
|
|
};
|
|
|
|
match playlist {
|
|
Playlist::MasterPlaylist(pl) => println!("Master playlist:\n{:?}", pl),
|
|
Playlist::MediaPlaylist(pl) => println!("Media playlist:\n{:?}", pl),
|
|
}
|
|
}
|
|
|
|
#[allow(unused)]
|
|
fn main_alt() {
|
|
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(&bytes);
|
|
|
|
match parsed {
|
|
Result::Ok((_i, Playlist::MasterPlaylist(pl))) => println!("Master playlist:\n{:?}", pl),
|
|
Result::Ok((_i, Playlist::MediaPlaylist(pl))) => println!("Media playlist:\n{:?}", pl),
|
|
Result::Err(e) => panic!("Parsing error: \n{}", e),
|
|
}
|
|
}
|