mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2024-12-22 22:46:37 +00:00
m3u8 parser for rust
f9b5420c0a
warning: useless conversion to the same type: `std::string::String` --> src/playlist.rs:415:77 | 415 | QuotedOrUnquoted::Unquoted(s) => Ok(ClosedCaptionGroupId::Other(String::from(s))), | ^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `s` | = note: `#[warn(clippy::useless_conversion)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion |
||
---|---|---|
.github/workflows | ||
examples | ||
sample-playlists | ||
src | ||
tests | ||
.gitignore | ||
Cargo.toml | ||
LICENSE | ||
masterplaylist.m3u8 | ||
mediaplaylist.m3u8 | ||
playlist.m3u8 | ||
README.md |
m3u8-rs
A Rust library for parsing m3u8 playlists (HTTP Live Streaming) link.
Uses the nom
library for all of the parsing.
Examples
Examples can be found in the examples
folder.