A Rust library for parsing m3u8 playlists (HTTP Live Streaming) link.
To use this library, add the following dependency to Cargo.toml
:
toml
[dependencies]
hls_parse = "0.1.2"
Also available on crates.io
```rust use hls_parse::protocol::HLS; let m3u8 = "#EXTM3U
http://media.example.com/first.ts
http://media.example.com/second.ts
http://media.example.com/third.ts
let baseurl = "http://media.example.com".tostring(); let mut hls = HLS::new(); hls.setbaseurl(&base_url); hls.parse(&m3u8); ```