public final class ClippingMediaSource extends CompositeMediaSource<java.lang.Void>
MediaSource
that wraps a source and clips its timeline based on specified start/end
positions. The wrapped source must consist of a single period.Modifier and Type | Class and Description |
---|---|
static class |
ClippingMediaSource.IllegalClippingException
Thrown when a
ClippingMediaSource cannot clip its wrapped source. |
MediaSource.MediaPeriodId, MediaSource.SourceInfoRefreshListener
Constructor and Description |
---|
ClippingMediaSource(MediaSource mediaSource,
long durationUs)
Creates a new clipping source that wraps the specified source and provides samples from the
default position for the specified duration.
|
ClippingMediaSource(MediaSource mediaSource,
long startPositionUs,
long endPositionUs)
Creates a new clipping source that wraps the specified source and provides samples between the
specified start and end position.
|
ClippingMediaSource(MediaSource mediaSource,
long startPositionUs,
long endPositionUs,
boolean enableInitialDiscontinuity)
Deprecated.
|
ClippingMediaSource(MediaSource mediaSource,
long startPositionUs,
long endPositionUs,
boolean enableInitialDiscontinuity,
boolean allowDynamicClippingUpdates,
boolean relativeToDefaultPosition)
Creates a new clipping source that wraps the specified source.
|
Modifier and Type | Method and Description |
---|---|
MediaPeriod |
createPeriod(MediaSource.MediaPeriodId id,
Allocator allocator)
Returns a new
MediaPeriod identified by periodId . |
protected long |
getMediaTimeForChildMediaTime(java.lang.Void id,
long mediaTimeMs)
Returns the media time in the composite source corresponding to the specified media time in a
child source.
|
void |
maybeThrowSourceInfoRefreshError()
Throws any pending error encountered while loading or refreshing source information.
|
protected void |
onChildSourceInfoRefreshed(java.lang.Void id,
MediaSource mediaSource,
Timeline timeline,
java.lang.Object manifest)
Called when the source info of a child source has been refreshed.
|
void |
prepareSourceInternal(ExoPlayer player,
boolean isTopLevelSource,
TransferListener mediaTransferListener)
Starts source preparation.
|
void |
releasePeriod(MediaPeriod mediaPeriod)
Releases the period.
|
void |
releaseSourceInternal()
Releases the source.
|
getMediaPeriodIdForChildMediaPeriodId, getWindowIndexForChildWindowIndex, prepareChildSource, releaseChildSource
addEventListener, createEventDispatcher, createEventDispatcher, createEventDispatcher, prepareSource, prepareSource, refreshSourceInfo, releaseSource, removeEventListener
public ClippingMediaSource(MediaSource mediaSource, long startPositionUs, long endPositionUs)
mediaSource
- The single-period source to wrap.startPositionUs
- The start position within mediaSource
's window at which to start
providing samples, in microseconds.endPositionUs
- The end position within mediaSource
's window at which to stop
providing samples, in microseconds. Specify C.TIME_END_OF_SOURCE
to provide samples
from the specified start point up to the end of the source. Specifying a position that
exceeds the mediaSource
's duration will also result in the end of the source not
being clipped.@Deprecated public ClippingMediaSource(MediaSource mediaSource, long startPositionUs, long endPositionUs, boolean enableInitialDiscontinuity)
mediaSource
- The single-period source to wrap.startPositionUs
- The start position within mediaSource
's window at which to start
providing samples, in microseconds.endPositionUs
- The end position within mediaSource
's window at which to stop
providing samples, in microseconds. Specify C.TIME_END_OF_SOURCE
to provide samples
from the specified start point up to the end of the source. Specifying a position that
exceeds the mediaSource
's duration will also result in the end of the source not
being clipped.enableInitialDiscontinuity
- Whether the initial discontinuity should be enabled.public ClippingMediaSource(MediaSource mediaSource, long durationUs)
mediaSource
- The single-period source to wrap.durationUs
- The duration from the default position in the window in mediaSource
's
timeline at which to stop providing samples. Specifying a duration that exceeds the mediaSource
's duration will result in the end of the source not being clipped.public ClippingMediaSource(MediaSource mediaSource, long startPositionUs, long endPositionUs, boolean enableInitialDiscontinuity, boolean allowDynamicClippingUpdates, boolean relativeToDefaultPosition)
If the start point is guaranteed to be a key frame, pass false
to enableInitialPositionDiscontinuity
to suppress an initial discontinuity when a period is first
read from.
For live streams, if the clipping positions should move with the live window, pass true
to allowDynamicClippingUpdates
. Otherwise, the live stream ends when the playback
reaches endPositionUs
in the last reported live window at the time a media period was
created.
mediaSource
- The single-period source to wrap.startPositionUs
- The start position at which to start providing samples, in microseconds.
If relativeToDefaultPosition
is false
, this position is relative to the
start of the window in mediaSource
's timeline. If relativeToDefaultPosition
is true
, this position is relative to the default position in the window in mediaSource
's timeline.endPositionUs
- The end position at which to stop providing samples, in microseconds.
Specify C.TIME_END_OF_SOURCE
to provide samples from the specified start point up
to the end of the source. Specifying a position that exceeds the mediaSource
's
duration will also result in the end of the source not being clipped. If relativeToDefaultPosition
is false
, the specified position is relative to the
start of the window in mediaSource
's timeline. If relativeToDefaultPosition
is true
, this position is relative to the default position in the window in mediaSource
's timeline.enableInitialDiscontinuity
- Whether the initial discontinuity should be enabled.allowDynamicClippingUpdates
- Whether the clipping of active media periods moves with a
live window. If false
, playback ends when it reaches endPositionUs
in the
last reported live window at the time a media period was created.relativeToDefaultPosition
- Whether startPositionUs
and endPositionUs
are
relative to the default position in the window in mediaSource
's timeline.public void prepareSourceInternal(ExoPlayer player, boolean isTopLevelSource, @Nullable TransferListener mediaTransferListener)
BaseMediaSource
BaseMediaSource.releaseSourceInternal()
.prepareSourceInternal
in class CompositeMediaSource<java.lang.Void>
player
- The player for which this source is being prepared.isTopLevelSource
- Whether this source has been passed directly to ExoPlayer.prepare(MediaSource)
or ExoPlayer.prepare(MediaSource, boolean,
boolean)
.mediaTransferListener
- The transfer listener which should be informed of any media data
transfers. May be null if no listener is available. Note that this listener should usually
be only informed of transfers related to the media loads and not of auxiliary loads for
manifests and other data.public void maybeThrowSourceInfoRefreshError() throws java.io.IOException
MediaSource
Should not be called directly from application code.
maybeThrowSourceInfoRefreshError
in interface MediaSource
maybeThrowSourceInfoRefreshError
in class CompositeMediaSource<java.lang.Void>
java.io.IOException
public MediaPeriod createPeriod(MediaSource.MediaPeriodId id, Allocator allocator)
MediaSource
MediaPeriod
identified by periodId
. This method may be called
multiple times without an intervening call to MediaSource.releasePeriod(MediaPeriod)
.
Should not be called directly from application code.
id
- The identifier of the period.allocator
- An Allocator
from which to obtain media buffer allocations.MediaPeriod
.public void releasePeriod(MediaPeriod mediaPeriod)
MediaSource
Should not be called directly from application code.
mediaPeriod
- The period to release.public void releaseSourceInternal()
BaseMediaSource
BaseMediaSource.prepareSourceInternal(ExoPlayer, boolean, TransferListener)
.releaseSourceInternal
in class CompositeMediaSource<java.lang.Void>
protected void onChildSourceInfoRefreshed(java.lang.Void id, MediaSource mediaSource, Timeline timeline, @Nullable java.lang.Object manifest)
CompositeMediaSource
onChildSourceInfoRefreshed
in class CompositeMediaSource<java.lang.Void>
id
- The unique id used to prepare the child source.mediaSource
- The child source whose source info has been refreshed.timeline
- The timeline of the child source.manifest
- The manifest of the child source.protected long getMediaTimeForChildMediaTime(java.lang.Void id, long mediaTimeMs)
CompositeMediaSource
getMediaTimeForChildMediaTime
in class CompositeMediaSource<java.lang.Void>
id
- The unique id used to prepare the child source.mediaTimeMs
- A media time of the child source, in milliseconds.