docs/doc/reference/com/google/android/exoplayer2/source/hls/offline/HlsDownloader.html
Package com.google.android.exoplayer2.source.hls.offline
All Implemented Interfaces:Downloader
[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public final classHlsDownloaderextends[SegmentDownloader](../../../offline/SegmentDownloader.html "class in com.google.android.exoplayer2.offline")<[HlsPlaylist](../playlist/HlsPlaylist.html "class in com.google.android.exoplayer2.source.hls.playlist")>
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.
A downloader for HLS streams.
Example usage:
SimpleCache cache = new SimpleCache(downloadFolder, new NoOpCacheEvictor(), databaseProvider);
CacheDataSource.Factory cacheDataSourceFactory =
new CacheDataSource.Factory()
.setCache(cache)
.setUpstreamDataSourceFactory(new DefaultHttpDataSource.Factory());
// Create a downloader for the first variant in a multivariant playlist.
HlsDownloader hlsDownloader =
new HlsDownloader(
new MediaItem.Builder()
.setUri(playlistUri)
.setStreamKeys(
Collections.singletonList(
new StreamKey(HlsMultivariantPlaylist.GROUP_INDEX_VARIANT, 0)))
.build(),
Collections.singletonList();
// Perform the download.
hlsDownloader.download(progressListener);
// Use the downloaded data for playback.
HlsMediaSource mediaSource =
new HlsMediaSource.Factory(cacheDataSourceFactory).createMediaSource(mediaItem);
-
SegmentDownloader.Segment
-
Downloader.ProgressListener
-
DEFAULT_MAX_MERGED_SEGMENT_START_TIME_DIFF_MS
Constructors | Constructor | Description |
| --- | --- |
| HlsDownloader(MediaItem mediaItem, CacheDataSource.Factory cacheDataSourceFactory) |
Deprecated.
Creates a new instance.
|
| HlsDownloader(MediaItem mediaItem, CacheDataSource.Factory cacheDataSourceFactory, Executor executor) |
Deprecated.
Creates a new instance.
|
| HlsDownloader(MediaItem mediaItem, ParsingLoadable.Parser<HlsPlaylist> manifestParser, CacheDataSource.Factory cacheDataSourceFactory, Executor executor) |
Deprecated.
Use HlsDownloader(MediaItem, Parser, CacheDataSource.Factory, Executor, long) instead.
|
| HlsDownloader(MediaItem mediaItem, ParsingLoadable.Parser<HlsPlaylist> manifestParser, CacheDataSource.Factory cacheDataSourceFactory, Executor executor, long maxMergedSegmentStartTimeDiffMs) |
Deprecated.
Creates a new instance. |
All Methods Instance Methods Concrete Methods Deprecated Methods | Modifier and Type | Method | Description |
| --- | --- | --- |
| protected List<SegmentDownloader.Segment> | getSegments(DataSource dataSource, HlsPlaylist manifest, boolean removing) |
Deprecated.
Returns a list of all downloadable SegmentDownloader.Segments for a given manifest.
|
-
cancel, download, execute, getCompressibleDataSpec, getManifest, remove
-
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
public HlsDownloader([MediaItem](../../../MediaItem.html "class in com.google.android.exoplayer2")mediaItem,[CacheDataSource.Factory](../../../upstream/cache/CacheDataSource.Factory.html "class in com.google.android.exoplayer2.upstream.cache")cacheDataSourceFactory)
Deprecated.
Creates a new instance.
Parameters:mediaItem - The MediaItem to be downloaded.cacheDataSourceFactory - A CacheDataSource.Factory for the cache into which the download will be written.
-
public HlsDownloader([MediaItem](../../../MediaItem.html "class in com.google.android.exoplayer2")mediaItem,[CacheDataSource.Factory](../../../upstream/cache/CacheDataSource.Factory.html "class in com.google.android.exoplayer2.upstream.cache")cacheDataSourceFactory,[Executor](https://developer.android.com/reference/java/util/concurrent/Executor.html "class or interface in java.util.concurrent")executor)
Deprecated.
Creates a new instance.
Parameters:mediaItem - The MediaItem to be downloaded.cacheDataSourceFactory - A CacheDataSource.Factory for the cache into which the download will be written.executor - An Executor used to make requests for the media being downloaded. Providing an Executor that uses multiple threads will speed up the download by allowing parts of it to be executed in parallel.
-
[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public HlsDownloader([MediaItem](../../../MediaItem.html "class in com.google.android.exoplayer2")mediaItem,[ParsingLoadable.Parser](../../../upstream/ParsingLoadable.Parser.html "interface in com.google.android.exoplayer2.upstream")<[HlsPlaylist](../playlist/HlsPlaylist.html "class in com.google.android.exoplayer2.source.hls.playlist")> manifestParser,[CacheDataSource.Factory](../../../upstream/cache/CacheDataSource.Factory.html "class in com.google.android.exoplayer2.upstream.cache")cacheDataSourceFactory,[Executor](https://developer.android.com/reference/java/util/concurrent/Executor.html "class or interface in java.util.concurrent")executor)
Deprecated.
Use HlsDownloader(MediaItem, Parser, CacheDataSource.Factory, Executor, long) instead.
-
public HlsDownloader([MediaItem](../../../MediaItem.html "class in com.google.android.exoplayer2")mediaItem,[ParsingLoadable.Parser](../../../upstream/ParsingLoadable.Parser.html "interface in com.google.android.exoplayer2.upstream")<[HlsPlaylist](../playlist/HlsPlaylist.html "class in com.google.android.exoplayer2.source.hls.playlist")> manifestParser,[CacheDataSource.Factory](../../../upstream/cache/CacheDataSource.Factory.html "class in com.google.android.exoplayer2.upstream.cache")cacheDataSourceFactory,[Executor](https://developer.android.com/reference/java/util/concurrent/Executor.html "class or interface in java.util.concurrent")executor,
long maxMergedSegmentStartTimeDiffMs)
Deprecated.
Creates a new instance.
Parameters:mediaItem - The MediaItem to be downloaded.manifestParser - A parser for HLS playlists.cacheDataSourceFactory - A CacheDataSource.Factory for the cache into which the download will be written.executor - An Executor used to make requests for the media being downloaded. Providing an Executor that uses multiple threads will speed up the download by allowing parts of it to be executed in parallel.maxMergedSegmentStartTimeDiffMs - The maximum difference of the start time of two segments, up to which the segments (of the same URI) should be merged into a single download segment, in milliseconds.
-
protected[List](https://developer.android.com/reference/java/util/List.html "class or interface in java.util")<[SegmentDownloader.Segment](../../../offline/SegmentDownloader.Segment.html "class in com.google.android.exoplayer2.offline")> getSegments([DataSource](../../../upstream/DataSource.html "interface in com.google.android.exoplayer2.upstream")dataSource,[HlsPlaylist](../playlist/HlsPlaylist.html "class in com.google.android.exoplayer2.source.hls.playlist")manifest,
boolean removing)
throws[IOException](https://developer.android.com/reference/java/io/IOException.html "class or interface in java.io"),[InterruptedException](https://developer.android.com/reference/java/lang/InterruptedException.html "class or interface in java.lang")
Deprecated.
Description copied from class: SegmentDownloader
Returns a list of all downloadable SegmentDownloader.Segments for a given manifest. Any required data should be loaded using SegmentDownloader.getManifest(com.google.android.exoplayer2.upstream.DataSource, com.google.android.exoplayer2.upstream.DataSpec, boolean) or SegmentDownloader.execute(com.google.android.exoplayer2.util.RunnableFutureTask<T, ?>, boolean).
Specified by:getSegments in class SegmentDownloader<HlsPlaylist>Parameters:dataSource - The DataSource through which to load any required data.manifest - The manifest containing the segments.removing - Whether the segments are being obtained as part of a removal. If true then a partial segment list is returned in the case that a load error prevents all segments from being listed. If false then an IOException will be thrown in this case.Returns:The list of downloadable SegmentDownloader.Segments.Throws:IOException - Thrown if allowPartialIndex is false and an execution error occurs, or if the media is not in a form that allows for its segments to be listed.InterruptedException