1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2025-04-13 23:34:13 +00:00
HLS(RFC8216) m3u8 parser/generator
Find a file
2025-04-10 22:09:57 +09:00
.github/workflows Refactor GitHub workflow to consolidate CI jobs and add multi-toolchain support 2025-04-10 22:07:35 +09:00
benches Use Cow<'a, str> to reduce clones #52 2020-04-22 10:34:23 +02:00
src Bump version from 0.5.0 to 0.5.1 2025-04-10 22:09:57 +09:00
tests Fix warnings added over the last 3 years 2024-09-06 12:41:57 +01:00
.gitignore more tests #25 + better docs #31 2019-10-03 18:01:53 +02:00
Cargo.toml Bump version from 0.5.0 to 0.5.1 2025-04-10 22:09:57 +09:00
CHANGELOG.md Add changelog.md 2020-04-22 10:34:23 +02:00
LICENSE-APACHE Add Apache 2.0 license 2019-09-09 20:05:27 +09:00
LICENSE-MIT Add Apache 2.0 license 2019-09-09 20:05:27 +09:00
README.md Remove Travis CI and update badges to use GitHub Actions 2025-04-10 22:05:30 +09:00

hls_m3u8

Crates.io: hls_m3u8 Documentation Actions Status License

HLS m3u8 parser/generator.

Documentation

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

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.