1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-18 00:12:54 +00:00
hls_m3u8/README.md

35 lines
984 B
Markdown
Raw Normal View History

2018-02-11 06:10:52 +00:00
hls_m3u8
=========
2018-02-14 20:26:52 +00:00
[![Crates.io: hls_m3u8](http://meritbadge.herokuapp.com/hls_m3u8)](https://crates.io/crates/hls_m3u8)
[![Documentation](https://docs.rs/hls_m3u8/badge.svg)](https://docs.rs/hls_m3u8)
[![Build Status](https://travis-ci.org/sile/hls_m3u8.svg?branch=master)](https://travis-ci.org/sile/hls_m3u8)
[![Code Coverage](https://codecov.io/gh/sile/hls_m3u8/branch/master/graph/badge.svg)](https://codecov.io/gh/sile/hls_m3u8/branch/master)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
2018-02-11 06:10:52 +00:00
2018-02-14 20:26:52 +00:00
[HLS] m3u8 parser/generator.
2018-02-11 06:10:52 +00:00
2018-02-14 20:26:52 +00:00
[Documentation](https://docs.rs/hls_m3u8)
[HLS]: https://tools.ietf.org/html/rfc8216
Examples
---------
```rust
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());
```