1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-04 01:28:59 +00:00
HLS(RFC8216) m3u8 parser/generator
Go to file
2019-09-09 20:16:30 +09:00
examples Apply rustfmt-1.0.0 2019-03-31 18:54:21 +09:00
src added tests 2019-09-06 13:46:21 +02:00
.gitignore Initial commit 2018-02-11 15:10:52 +09:00
.travis.yml Add .travis.yml 2018-02-14 16:45:16 +09:00
Cargo.toml Bump version to v0.2.1 2019-09-09 20:16:30 +09: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 Update README.md 2019-09-09 20:16:13 +09:00

hls_m3u8

Crates.io: hls_m3u8 Documentation Build Status Code Coverage License: Apache OR License: MIT

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.