Class HlsPlaylist
- java.lang.Object
-
- com.google.android.exoplayer2.source.hls.playlist.HlsPlaylist
-
- All Implemented Interfaces:
FilterableManifest<HlsPlaylist>
- Direct Known Subclasses:
HlsMediaPlaylist
,HlsMultivariantPlaylist
@Deprecated public abstract class HlsPlaylist extends Object implements FilterableManifest<HlsPlaylist>
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Represents an HLS playlist.
-
-
Field Summary
Fields Modifier and Type Field Description String
baseUri
Deprecated.The base uri.boolean
hasIndependentSegments
Deprecated.Whether the media is formed of independent segments, as defined by the #EXT-X-INDEPENDENT-SEGMENTS tag.List<String>
tags
Deprecated.The list of tags in the playlist.
-
Constructor Summary
Constructors Modifier Constructor Description protected
HlsPlaylist(String baseUri, List<String> tags, boolean hasIndependentSegments)
Deprecated.
-
-
-
Field Detail
-
baseUri
public final String baseUri
Deprecated.The base uri. Used to resolve relative paths.
-
hasIndependentSegments
public final boolean hasIndependentSegments
Deprecated.Whether the media is formed of independent segments, as defined by the #EXT-X-INDEPENDENT-SEGMENTS tag.
-
-