Package com.castlabs.sdk.thumbs
Class JpgThumbnailProvider
java.lang.Object
com.castlabs.sdk.thumbs.BaseThumbnailProvider
com.castlabs.sdk.thumbs.JpgThumbnailProvider
- All Implemented Interfaces:
ThumbnailProvider
Implementation of the
ThumbnailProvider
that supportes single and gridded thumbnails
that are loaded from a URL template that contains $index$.
The index starts at 1 and is calculated based on the current position and the specified duration of a thumbnail.
- Since:
- 4.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.castlabs.sdk.thumbs.ThumbnailProvider
ThumbnailProvider.Callback, ThumbnailProvider.IndexRefreshListener, ThumbnailProvider.RequestQueuePosition, ThumbnailProvider.ThumbnailResult
-
Constructor Summary
ConstructorDescriptionJpgThumbnailProvider
(com.castlabs.sdk.thumbs.ThumbnailLoader.Factory loaderFactory, PlayerController playerController, LoadingStrategy loadingStrategy, String urlTemplate, long thumbnailIntervalMs, Point gridSize) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Cancels any queued Thumbnail Requests.boolean
cancelRequests
(long positionFromUs, long positionToUs) Removes previously queued explicit requests (through the getThumbnail methods), whose requests positions' within the specified position range.void
destroy()
Free up all the resources, meaning this provider will not be used anymoregetDownloadableResources
(String remoteManifestUrl, File basePath, Bundle bundle) This methods is used to integrate a thumbnail provider with the downloader plugins and implementation can return an array of resources that should be fetched for offline playback.getThumbnail
(long positionUs, int thumbnailIndex, long positionToleranceUs) Load the thumbnail for the given position and return aFuture
linked to the operation.void
getThumbnail
(long positionUs, ThumbnailProvider.Callback callback, int thumbnailIndex, long positionToleranceUs) Load the thumbnail for the given position and return it through the provided callback.void
onThumbnailRequestFinished
(com.castlabs.sdk.thumbs.ThumbnailRequest request, boolean completed) void
refreshThumbnails
(long positionUs) Trigger an refresh of the internal thumbnail indexvoid
setLoadingStrategy
(LoadingStrategy loadingStrategy) Updates theLoadingStrategy
of this provider.void
setRequestQueuePosition
(ThumbnailProvider.RequestQueuePosition queuePosition) Set where in the loading queue shall new thumbnail requests be placed.Methods inherited from class com.castlabs.sdk.thumbs.BaseThumbnailProvider
addIndexRefreshListener, getCuePointsList, getThumbnailPosition, removeIndexRefreshListener
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.castlabs.sdk.thumbs.ThumbnailProvider
getThumbnail, getThumbnail
-
Constructor Details
-
JpgThumbnailProvider
public JpgThumbnailProvider(@NonNull com.castlabs.sdk.thumbs.ThumbnailLoader.Factory loaderFactory, @Nullable PlayerController playerController, @Nullable LoadingStrategy loadingStrategy, @NonNull String urlTemplate, long thumbnailIntervalMs, Point gridSize)
-
-
Method Details
-
onThumbnailRequestFinished
public void onThumbnailRequestFinished(com.castlabs.sdk.thumbs.ThumbnailRequest request, boolean completed) -
cancelPendingRequests
public void cancelPendingRequests()Description copied from interface:ThumbnailProvider
Cancels any queued Thumbnail Requests. Requests currently processing won't be cancelled.- Specified by:
cancelPendingRequests
in interfaceThumbnailProvider
-
setLoadingStrategy
Description copied from interface:ThumbnailProvider
Updates theLoadingStrategy
of this provider. If thumbnails are already loading, this might not have an immediate effect.- Specified by:
setLoadingStrategy
in interfaceThumbnailProvider
- Parameters:
loadingStrategy
- the loading strategy to set
-
setRequestQueuePosition
Description copied from interface:ThumbnailProvider
Set where in the loading queue shall new thumbnail requests be placed. Either front or back.- Specified by:
setRequestQueuePosition
in interfaceThumbnailProvider
- Parameters:
queuePosition
- the position where to insert the upcoming thumbnail requests
-
destroy
public void destroy()Description copied from interface:ThumbnailProvider
Free up all the resources, meaning this provider will not be used anymore- Specified by:
destroy
in interfaceThumbnailProvider
- Overrides:
destroy
in classBaseThumbnailProvider
-
getDownloadableResources
@Nullable public DownloadableResource[] getDownloadableResources(String remoteManifestUrl, File basePath, Bundle bundle) Description copied from interface:ThumbnailProvider
This methods is used to integrate a thumbnail provider with the downloader plugins and implementation can return an array of resources that should be fetched for offline playback.- Specified by:
getDownloadableResources
in interfaceThumbnailProvider
- Parameters:
remoteManifestUrl
- The manifest URL of the remote manifest that is the source of this downloadbasePath
- The base folder for this downloadbundle
- The bundle that was used to start the initiate the download- Returns:
- Array of downloadable resources or null
-
getThumbnail
public void getThumbnail(long positionUs, ThumbnailProvider.Callback callback, @ThumbnailIndex int thumbnailIndex, long positionToleranceUs) Description copied from interface:ThumbnailProvider
Load the thumbnail for the given position and return it through the provided callback.- Specified by:
getThumbnail
in interfaceThumbnailProvider
- Parameters:
positionUs
- The position in microsecondscallback
- The callback that will be triggered once data are availablethumbnailIndex
- Position of the Thumbnail relative to its timestamppositionToleranceUs
- Maximum tolerance time between the time of the requested thumbnail and a potentially already-loaded thumbnail in the index. If a matching nearby thumbnail with data is found, it will be returned immediately. Otherwise the requested thumbnail will be scheduled for fetching. If 0, the exact thumbnail will always be returned, loading it if necessary.
-
cancelRequests
public boolean cancelRequests(long positionFromUs, long positionToUs) Description copied from interface:ThumbnailProvider
Removes previously queued explicit requests (through the getThumbnail methods), whose requests positions' within the specified position range. If the request was issued with aThumbnailProvider.Callback
it will be invoked.- Specified by:
cancelRequests
in interfaceThumbnailProvider
- Parameters:
positionFromUs
- minimum position for cancelling a request (inclusive)positionToUs
- maximum position for cancelling a request (exclusive)- Returns:
- whether at least one request has been cancelled by the method call
-
getThumbnail
public Future<ThumbnailProvider.ThumbnailResult> getThumbnail(long positionUs, int thumbnailIndex, long positionToleranceUs) Description copied from interface:ThumbnailProvider
Load the thumbnail for the given position and return aFuture
linked to the operation.- Specified by:
getThumbnail
in interfaceThumbnailProvider
- Parameters:
positionUs
- The position in microsecondsthumbnailIndex
- Position of the Thumbnail relative to its timestamppositionToleranceUs
- Maximum tolerance time between the time of the requested thumbnail and a potentially already-loaded thumbnail in the index. If a matching nearby thumbnail with data is found, it will be returned immediately. Otherwise the requested thumbnail will be scheduled for fetching. If 0, the exact thumbnail will always be returned, loading it if necessary.- Returns:
- a Future identifying the request
-
refreshThumbnails
public void refreshThumbnails(long positionUs) Trigger an refresh of the internal thumbnail index- Parameters:
positionUs
- the playback position to consider as root point when calculating the load order, if needed
-