Skip to content

Commit

Permalink
Serialize media playlist
Browse files Browse the repository at this point in the history
  • Loading branch information
VixieTSQ committed Jun 25, 2024
1 parent 784e2b9 commit 2a6dac1
Show file tree
Hide file tree
Showing 5 changed files with 552 additions and 237 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ assert_eq!(String::from_utf8(output).unwrap(), "\
");
```

## Features

* `steering-manifest`: Enables support for serializing and deserializing steering manifests.

## Roadmap

This library is 100% finished and feature-complete as far as serializing tags goes, but I'd like to eventually implement a serializer for the higher level playlist representation, and also deserialization.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ pub struct DeltaUpdateInfo {
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RenditionReport {
/// The URI for the `MediaPlaylist` of the specified rendition.
pub uri: Option<String>,
pub uri: String,

/// The media sequence number of the last `MediaSegment` currently
/// in the specified Rendition.
Expand Down
Loading

0 comments on commit 2a6dac1

Please sign in to comment.