Package io.lindstrom.m3u8.model
Interface MasterPlaylist
- All Superinterfaces:
Playlist
@Immutable public interface MasterPlaylist extends Playlist
Master playlist interface
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMasterPlaylist.Builder -
Method Summary
Modifier and Type Method Description java.util.List<AlternativeRendition>alternativeRenditions()A list of alternate renditions related to this playlist.static MasterPlaylist.Builderbuilder()java.util.List<IFrameVariant>iFrameVariants()A list of I-frame variant streams related to this playlist.java.util.List<SessionData>sessionData()A list of arbitrary session data.java.util.List<SegmentKey>sessionKeys()A list of encryption keys used in media playlists.java.util.List<Variant>variants()A list of Variant Streams, each of which describes a different version of the same content.Methods inherited from interface io.lindstrom.m3u8.model.Playlist
comments, independentSegments, startTimeOffset, variables, version
-
Method Details
-
alternativeRenditions
java.util.List<AlternativeRendition> alternativeRenditions()A list of alternate renditions related to this playlist.- Returns:
- list of alternate renditions
- See Also:
- RFC 8216 - 4.3.4.1. EXT-X-MEDIA
-
variants
java.util.List<Variant> variants()A list of Variant Streams, each of which describes a different version of the same content.- Returns:
- list of variant streams
- See Also:
- RFC 8216 - 4.3.4.2. EXT-X-STREAM-INF
-
iFrameVariants
java.util.List<IFrameVariant> iFrameVariants()A list of I-frame variant streams related to this playlist.- Returns:
- list of I-frame variant streams
- See Also:
- RFC 8216 - 4.3.3.6. EXT-X-I-FRAMES-ONLY
-
sessionData
java.util.List<SessionData> sessionData()A list of arbitrary session data.- Returns:
- list of session data
- See Also:
- RFC 8216 - 4.3.4.4. EXT-X-SESSION-DATA
-
sessionKeys
java.util.List<SegmentKey> sessionKeys()A list of encryption keys used in media playlists.- Returns:
- list of encryption keys
- See Also:
- RFC 8216 - 4.3.4.5. EXT-X-SESSION-KEY
-
builder
-