11 releases
0.4.2 | Sep 6, 2024 |
---|---|
0.4.1 | Aug 2, 2021 |
0.4.0 | Aug 15, 2020 |
0.3.0 | Apr 10, 2020 |
0.1.1 | Feb 23, 2018 |
#422 in Parser implementations
1,873 downloads per month
Used in 6 crates
(4 directly)
390KB
8K
SLoC
hls_m3u8
HLS m3u8 parser/generator.
Examples
use hls_m3u8::MediaPlaylist;
let m3u8 = "#EXTM3U
#EXT-X-TARGETDURATION:10
#EXT-X-VERSION:3
#EXTINF:9.009,
http://media.example.com/first.ts
#EXTINF:9.009,
http://media.example.com/second.ts
#EXTINF:3.003,
http://media.example.com/third.ts
#EXT-X-ENDLIST";
assert!(m3u8.parse::<MediaPlaylist>().is_ok());
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~2.4–8MB
~71K SLoC