Package com.brightcove.player.offline
Class Mp4Downloadable
java.lang.Object
com.brightcove.player.offline.MediaDownloadable
com.brightcove.player.offline.Mp4Downloadable
A
MediaDownloadable responsible to manage the download of a MP4 Video and its assets.-
Nested Class Summary
Nested classes/interfaces inherited from class com.brightcove.player.offline.MediaDownloadable
MediaDownloadable.DownloadEventListener, MediaDownloadable.MediaFormatListener, MediaDownloadable.OnVideoSizeCallback -
Field Summary
Fields inherited from class com.brightcove.player.offline.MediaDownloadable
AUDIO_LANGUAGE_ROLES, AUDIO_LANGUAGES, CAPTIONS, configurationBundle, context, DEFAULT_MPD_NAME, downloadEventListener, downloadManager, estimatedSize, requestConfig, video, VIDEO_RENDITIONS -
Constructor Summary
ConstructorsConstructorDescriptionMp4Downloadable(android.content.Context context, Video video, MediaDownloadable.DownloadEventListener downloadEventListener, RequestConfig requestConfig) -
Method Summary
Modifier and TypeMethodDescriptionvoidReturns the estimated total size of the media, which includes all assets such video, audio and subtitles.voidgetMediaFormatTracksAvailable(MediaDownloadable.MediaFormatListener mediaFormatListener) An asynchronous call to retrieve the MediaFormat tracks available for the current video.protected HashMap<String,Serializable> protected voidCalled when the media download has completed successfully.booleanRequests the media to be downloaded asynchronously.Methods inherited from class com.brightcove.player.offline.MediaDownloadable
cancelDownload, create, create, createDownloadRequest, deleteDownload, enqueueDownloadRequest, getConfigurationBundle, getDownloadDirectory, getDownloadStatus, getEstimatedSize, getMediaUrl, onMediaDownloadCancelled, onMediaDownloadDeleted, onMediaDownloadFailed, onMediaDownloadPaused, onMediaDownloadProgress, onMediaDownloadRequested, onMediaDownloadStarted, pauseDownload, registerDownloadable, resumeDownload, setConfigurationBundle, setVideoBitrate
-
Constructor Details
-
Mp4Downloadable
public Mp4Downloadable(@NonNull android.content.Context context, @NonNull Video video, @Nullable MediaDownloadable.DownloadEventListener downloadEventListener, @Nullable RequestConfig requestConfig)
-
-
Method Details
-
getMediaFormatTracksAvailable
public void getMediaFormatTracksAvailable(@NonNull MediaDownloadable.MediaFormatListener mediaFormatListener) Description copied from class:MediaDownloadableAn asynchronous call to retrieve the MediaFormat tracks available for the current video. The result will be given through theMediaDownloadable.MediaFormatListenerlistener.Note: Only the video type
DeliveryType.DASHis currently supported.- Specified by:
getMediaFormatTracksAvailablein classMediaDownloadable- Parameters:
mediaFormatListener- the media format listener
-
requestDownload
public boolean requestDownload()Requests the media to be downloaded asynchronously. The actual status of the download request will be published to theMediaDownloadable.downloadEventListener. Please useMediaDownloadable.getDownloadStatus()to query the download status.- Overrides:
requestDownloadin classMediaDownloadable- Returns:
- true if the request was successfully placed in the download queue, otherwise false.
Please note that a true value does not mean that media has been downloaded successfully.
The actual status of the download request will be published to the
MediaDownloadable.downloadEventListener. Please useMediaDownloadable.getDownloadStatus()to query the download status. - Throws:
IllegalStateException- If the video has been already queued for download.
-
estimatedSize
Description copied from class:MediaDownloadableReturns the estimated total size of the media, which includes all assets such video, audio and subtitles.The actual size of the media that will be used by the host device may vary based on the partition type and format of the storage. This method requires the Media Manifest to estimate the size, therefore it might download the manifest and store it to the directory provided in the
RequestConfig()object in the constructor, if it has not been done already.- Overrides:
estimatedSizein classMediaDownloadable- Parameters:
callback- the approximate size of the media.
-
onMediaDownloadComplete
Description copied from class:MediaDownloadableCalled when the media download has completed successfully.- Overrides:
onMediaDownloadCompletein classMediaDownloadable
-
getMediaProperties
- Specified by:
getMediaPropertiesin classMediaDownloadable
-