Constructor
new StreamingEngine(manifest, playerInterface)
Creates a StreamingEngine.
The StreamingEngine is responsible for setting up the Manifest's Streams
(i.e., for calling each Stream's createSegmentIndex() function), for
downloading segments, for co-ordinating audio, video, and text buffering,
and for handling Period transitions. The StreamingEngine provides an
interface to switch between Streams, but it does not choose which Streams to
switch to.
The StreamingEngine notifies its owner when it needs to buffer a new Period,
so its owner can choose which Streams within that Period to initially
buffer. Moreover, the StreamingEngine also notifies its owner when any
Stream within the current Period may be switched to, so its owner can switch
bitrates, resolutions, or languages.
The StreamingEngine does not need to be notified about changes to the
Manifest's SegmentIndexes; however, it does need to be notified when new
Periods are added to the Manifest, so it can set up that Period's Streams.
To start the StreamingEngine the owner must first call configure() followed
by init(). The StreamingEngine will then call onChooseStreams(p) when it
needs to buffer Period p; it will then switch to the Streams returned from
that function. The StreamingEngine will call onCanSwitch() when any
Stream within the current Period may be switched to.
The owner must call seeked() each time the playhead moves to a new location
within the presentation timeline; however, the owner may forego calling
seeked() when the playhead moves outside the presentation timeline.
Parameters:
| Name | Type | Description |
|---|---|---|
manifest |
shakaExtern.Manifest | |
playerInterface |
shaka.media.StreamingEngine.PlayerInterface |
- Implements:
- Source:
Members
-
(private) bufferingGoalScale_ :number
-
Type:
- number
- Source:
-
(private) canSwitchPeriod_ :Array.<?{promise: shaka.util.PublicPromise, resolved: boolean}>
-
Maps a Period's index to an object that indicates that either 1. the Period has not been set up (undefined) 2. the Period is being set up ([a PublicPromise, false]), 3. the Period is set up (i.e., all Streams within the Period are set up) and can be switched to ([a PublicPromise, true]).
Type:
- Array.<?{promise: shaka.util.PublicPromise, resolved: boolean}>
- Source:
-
(private) canSwitchStream_ :Object.<number, ?{promise: shaka.util.PublicPromise, resolved: boolean}>
-
Maps a Stream's ID to an object that indicates that either 1. the Stream has not been set up (undefined) 2. the Stream is being set up ([a Promise instance, false]), 3. the Stream is set up and can be switched to ([a Promise instance, true]).
Type:
- Object.<number, ?{promise: shaka.util.PublicPromise, resolved: boolean}>
- Source:
-
(private, nullable) config_ :shakaExtern.StreamingConfiguration
-
Type:
- Source:
-
(private) destroyed_ :boolean
-
Type:
- boolean
- Source:
-
(private) failureCallbackBackoff_ :shaka.net.Backoff
-
Used for delay and backoff of failure callbacks, so that apps do not retry instantly.
Type:
- Source:
-
(private) fatalError_ :boolean
-
Set to true on fatal error. Interrupts fetchAndAppend_().
Type:
- boolean
- Source:
-
(private, nullable) manifest_ :shakaExtern.Manifest
-
Type:
- Source:
-
(private) mediaStates_ :Object.<shaka.util.ManifestParserUtils.ContentType, !shaka.media.StreamingEngine.MediaState_>
-
Maps a content type, e.g., 'audio', 'video', or 'text', to a MediaState.
Type:
- Source:
-
(constant) MIN_BUFFER_LENGTH :number
-
The minimum number seconds that will remain buffered after evicting media.
Type:
- number
- Source:
-
(private, nullable) playerInterface_ :shaka.media.StreamingEngine.PlayerInterface
-
Type:
- shaka.media.StreamingEngine.PlayerInterface
- Source:
-
(private) setupPeriodPromise_ :Promise
-
Type:
- Promise
- Source:
-
(private) startupComplete_ :boolean
-
Set to true once one segment of each content type has been buffered.
Type:
- boolean
- Source:
-
(private) textStreamSequenceId_ :number
-
Type:
- number
- Source:
-
(private) unloadingTextStream_ :boolean
-
Set to true when a request to unload text stream comes in. This is used since loading new text stream is async, the request of unloading text stream might come in before setting up new text stream is finished.
Type:
- boolean
- Source:
Methods
-
(private, static) isIdle_(mediaState) → {boolean}
-
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ - Source:
Returns:
True if the given MediaState is idle; otherwise, return false.- Type
- boolean
-
(private, static) logPrefix_(mediaState) → {string}
-
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ - Source:
Returns:
A log prefix of the form ($CONTENT_TYPE:$STREAM_ID), e.g., "(audio:5)" or "(video:hd)".- Type
- string
-
(private) append_(mediaStatenon-null, playheadTime, period, stream, referencenon-null, segmentnon-null) → (non-null) {Promise}
-
Appends the given segment and evicts content if required to append.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ playheadTimenumber periodshakaExtern.Period streamshakaExtern.Stream referenceshaka.media.SegmentReference segmentArrayBuffer - Source:
Returns:
- Type
- Promise
-
(private) cancelUpdate_(mediaStatenon-null)
-
Cancels |mediaState|'s next update if one exists.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ - Source:
-
(private) clearAllBuffers_()
-
Clears the buffer for every stream. Unlike clearBuffer_, this will handle cases where a MediaState is performing an update. After this runs, every MediaState will have a pending update.
- Source:
-
(private) clearBuffer_(mediaStatenon-null, flush)
-
Clears the buffer and schedules another update.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ flushboolean - Source:
-
configure(config)
-
Called by the Player to provide an updated configuration any time it changes. Will be called at least once before init().
Parameters:
Name Type Description configshakaExtern.StreamingConfiguration - Source:
-
(private) createMediaState_(stream, needPeriodIndex, opt_resumeAtopt) → {shaka.media.StreamingEngine.MediaState_}
-
Creates a media state.
Parameters:
Name Type Attributes Description streamshakaExtern.Stream needPeriodIndexnumber opt_resumeAtnumber <optional>
- Source:
Returns:
-
destroy() → (non-null) {Promise}
-
Destroys the object, releasing all resources and shutting down all operations. Returns a Promise which is resolved when destruction is complete. This Promise should never be rejected.
- Implements:
- Source:
Returns:
- Type
- Promise
-
(private) evict_(mediaState, playheadTime) → (non-null) {Promise}
-
Evicts media to meet the max buffer behind limit.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ playheadTimenumber - Source:
Returns:
- Type
- Promise
-
(private) fetch_(reference) → (non-null) {Promise.<!ArrayBuffer>}
-
Fetches the given segment.
Parameters:
Name Type Description referenceshaka.media.InitSegmentReference | shaka.media.SegmentReference - Source:
Returns:
- Type
- Promise.<!ArrayBuffer>
-
(private) fetchAndAppend_(mediaStatenon-null, playheadTime, currentPeriodIndex, referencenon-null)
-
Fetches and appends the given segment; sets up the given MediaState's associated SourceBuffer and evicts segments if either are required beforehand. Schedules another update after completing successfully.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ playheadTimenumber currentPeriodIndexnumber The index of the current Period. referenceshaka.media.SegmentReference - Source:
-
(private) findPeriodContainingStream_(streamnon-null) → {number}
-
Parameters:
Name Type Description streamshakaExtern.Stream - Source:
Returns:
The index of the Period which contains |stream|, or -1 if no Period contains |stream|.- Type
- number
-
(private) findPeriodContainingTime_(time) → {number}
-
Parameters:
Name Type Description timenumber The time, in seconds, relative to the start of the presentation. - Source:
Returns:
The index of the Period which starts after |time|- Type
- number
-
getActiveAudio() → (nullable) {shakaExtern.Stream}
-
Get the active audio stream. Returns null if there is no audio streaming.
- Source:
Returns:
- Type
- shakaExtern.Stream
-
getActivePeriod() → (nullable) {shakaExtern.Period}
-
Gets the Period in which we are currently buffering. This may be different from the Period which contains the Playhead.
- Source:
Returns:
- Type
- shakaExtern.Period
-
getActiveText() → (nullable) {shakaExtern.Stream}
-
Get the active text stream. Returns null if there is no text streaming.
- Source:
Returns:
- Type
- shakaExtern.Stream
-
getActiveVideo() → (nullable) {shakaExtern.Stream}
-
Get the active video stream. Returns null if there is no video streaming.
- Source:
Returns:
- Type
- shakaExtern.Stream
-
(private) getBufferingGoal_() → {number}
-
Computes buffering goal.
- Source:
Returns:
- Type
- number
-
getCurrentPeriod() → {shakaExtern.Period}
-
Gets the current Period the stream is in. This Period may not be initialized yet if canSwitch(period) has not been called yet.
- Source:
Returns:
- Type
- shakaExtern.Period
-
(private) getSegmentReferenceIfAvailable_(mediaState, currentPeriodIndex, position) → {shaka.media.SegmentReference}
-
Gets the SegmentReference at the given position if it's available.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ currentPeriodIndexnumber positionnumber - Source:
Returns:
-
(private) getSegmentReferenceNeeded_(mediaState, playheadTime, bufferEndnullable, currentPeriodIndex) → {shaka.media.SegmentReference}
-
Gets the SegmentReference of the next segment needed.
Parameters:
Name Type Attributes Description mediaStateshaka.media.StreamingEngine.MediaState_ playheadTimenumber bufferEndnumber <nullable>
currentPeriodIndexnumber - Source:
Returns:
The SegmentReference of the next segment needed, or null if a segment could not be found, does not exist, or is not available. -
(private) getStream_(type) → (nullable) {shakaExtern.Stream}
-
Get the active stream for the given type. Returns null if there is no stream for the given type.
Parameters:
Name Type Description typeshaka.util.ManifestParserUtils.ContentType - Source:
Returns:
- Type
- shakaExtern.Stream
-
(private) getTimeNeeded_(mediaState, playheadTime) → {number}
-
Gets the next timestamp needed. Returns the playhead's position if the buffer is empty; otherwise, returns the time at which the last segment appended ends.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ playheadTimenumber - Source:
Throws:
-
if the buffer is inconsistent with our expectations.
- Type
- shaka.util.Error
Returns:
The next timestamp needed.- Type
- number
-
(private) handlePeriodTransition_(mediaState)
-
Calls onChooseStreams() when necessary.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ The last MediaState updated. - Source:
-
(private) handleQuotaExceeded_(mediaState, errornon-null)
-
Handles a QUOTA_EXCEEDED_ERROR.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ errorshaka.util.Error - Source:
-
(private) handleStartup_(mediaState, stream)
-
Sets up all known Periods when startup completes; otherwise, does nothing.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ The last MediaState updated. streamshakaExtern.Stream - Source:
-
(private) handleStreamingError_(errornon-null)
-
Handle streaming errors by delaying, then notifying the application by error callback and by streaming failure callback.
Parameters:
Name Type Description errorshaka.util.Error - Source:
-
init() → (non-null) {Promise}
-
Initializes the StreamingEngine. After this function is called the StreamingEngine will call onChooseStreams(p) when it needs to buffer Period p and onCanSwitch() when any Stream within that Period may be switched to. After the StreamingEngine calls onChooseStreams(p) for the first time, it will begin setting up the Streams returned from that function and subsequently switch to them. However, the StreamingEngine will not begin setting up any other Streams until at least one segment from each of the initial set of Streams has been buffered (this reduces startup latency). After the StreamingEngine completes this startup phase it will begin setting up each Period's Streams (while buffering in parrallel). When the StreamingEngine needs to buffer the next Period it will have already set up that Period's Streams. So, when the StreamingEngine calls onChooseStreams(p) after the first time, the StreamingEngine will immediately switch to the Streams returned from that function.
- Source:
Returns:
- Type
- Promise
-
(private) initSourceBuffer_(mediaState, currentPeriodIndex, appendWindowStart, appendWindowEnd) → (non-null) {Promise}
-
Sets the given MediaState's associated SourceBuffer's timestamp offset and init segment if either are required. If an error occurs then neither the timestamp offset or init segment are unset, since another call to switch() will end up superseding them.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ currentPeriodIndexnumber appendWindowStartnumber appendWindowEndnumber - Source:
Returns:
- Type
- Promise
-
(private) initStreams_(chosenStreams, opt_resumeAtopt) → (non-null) {Promise}
-
Initializes the given streams and media states if required. This will schedule updates for the given types.
Parameters:
Name Type Attributes Description chosenStreamsshaka.media.StreamingEngine.ChosenStreams opt_resumeAtnumber <optional>
- Source:
Returns:
- Type
- Promise
-
loadNewTextStream(stream) → (non-null) {Promise}
-
Notifies StreamingEngine that a new text stream was added to the manifest. This initializes the given stream. This returns a Promise that resolves when the stream has been set up, and a media state has been created.
Parameters:
Name Type Description streamshakaExtern.Stream - Source:
Returns:
- Type
- Promise
-
(private) lookupSegmentPosition_(mediaState, presentationTime, currentPeriodIndex) → (nullable) {number}
-
Looks up the position of the segment containing the given timestamp.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ presentationTimenumber The timestamp needed, relative to the start of the presentation. currentPeriodIndexnumber - Source:
Returns:
A segment position, or null if a segment was not be found.- Type
- number
-
(private) onUpdate_(mediaStatenon-null)
-
Called when |mediaState|'s update timer has expired.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ - Source:
-
(private) parseEMSG_(periodnon-null, referencenon-null, boxnon-null)
-
Parse the EMSG box from a MP4 container.
Parameters:
Name Type Description periodshakaExtern.Period referenceshaka.media.SegmentReference boxshaka.util.Mp4Parser.ParsedBox - Source:
-
retry() → {boolean}
-
Clear per-stream error states and retry any failed streams.
- Source:
Returns:
False if unable to retry.- Type
- boolean
-
(private) scheduleUpdate_(mediaStatenon-null, delay)
-
Schedules |mediaState|'s next update.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ delaynumber The delay in seconds. - Source:
-
seeked()
-
Notifies the StreamingEngine that the playhead has moved to a valid time within the presentation timeline.
- Source:
-
(private) setDuration_()
-
Sets the MediaSource's duration.
- Source:
-
setTrickPlay(on)
-
Set trick play on or off. If trick play is on, related trick play streams will be used when possible.
Parameters:
Name Type Description onboolean - Source:
-
(private) setupPeriod_(periodIndex) → (non-null) {Promise}
-
Sets up the given Period if necessary. Calls onError() if an error occurs.
Parameters:
Name Type Description periodIndexnumber The Period's index. - Source:
Returns:
A Promise which is resolved when the given Period is setup.- Type
- Promise
-
(private) setupStreams_(streamsnon-null) → (non-null) {Promise}
-
Sets up the given Streams if necessary. Does NOT call onError() if an error occurs.
Parameters:
Name Type Description streamsArray.<!shakaExtern.Stream> - Source:
Returns:
- Type
- Promise
-
(private) switchInternal_(stream, clearBuffer)
-
Switches to the given Stream. |stream| may be from any Variant or any Period.
Parameters:
Name Type Description streamshakaExtern.Stream clearBufferboolean - Source:
-
switchTextStream(textStream)
-
Parameters:
Name Type Description textStreamshakaExtern.Stream - Source:
-
switchVariant(variant, clearBuffer)
-
Parameters:
Name Type Description variantshakaExtern.Variant clearBufferboolean - Source:
-
unloadTextStream()
-
Stop fetching text stream when the user chooses to hide the caption.
- Source:
-
(private) update_(mediaState) → (nullable) {number}
-
Updates the given MediaState.
Parameters:
Name Type Description mediaStateshaka.media.StreamingEngine.MediaState_ - Source:
Throws:
-
if an error occurs.
- Type
- shaka.util.Error
Returns:
The number of seconds to wait until updating again or null if another update does not need to be scheduled.- Type
- number
Type Definitions
-
ChosenStreams
-
Type:
- {variant: (?shakaExtern.Variant|undefined), text: ?shakaExtern.Stream}
Properties:
Name Type Attributes Description variantshakaExtern.Variant | undefined The chosen variant. May be omitted for text re-init. textshakaExtern.Stream <nullable>
The chosen text stream. - Source:
-
MediaState_
-
Contains the state of a logical stream, i.e., a sequence of segmented data for a particular content type. At any given time there is a Stream object associated with the state of the logical stream.
Type:
- {type: shaka.util.ManifestParserUtils.ContentType, stream: shakaExtern.Stream, lastStream: ?shakaExtern.Stream, lastSegmentReference: shaka.media.SegmentReference, restoreStreamAfterTrickPlay: ?shakaExtern.Stream, needInitSegment: boolean, needPeriodIndex: number, endOfStream: boolean, performingUpdate: boolean, updateTimer: ?number, waitingToClearBuffer: boolean, waitingToFlushBuffer: boolean, clearingBuffer: boolean, recovering: boolean, hasError: boolean, resumeAt: number}
Properties:
Name Type Attributes Description typeshaka.util.ManifestParserUtils.ContentType The stream's content type, e.g., 'audio', 'video', or 'text'. streamshakaExtern.Stream The current Stream. lastStreamshakaExtern.Stream <nullable>
The Stream of the last segment that was appended. lastSegmentReferenceshaka.media.SegmentReference The SegmentReference of the last segment that was appended. restoreStreamAfterTrickPlayshakaExtern.Stream <nullable>
The Stream to restore after trick play mode is turned off. needInitSegmentboolean True indicates that |stream|'s init segment must be inserted before the next media segment is appended. endOfStreamboolean True indicates that the end of the buffer has hit the end of the presentation. needPeriodIndexnumber The index of the Period which needs to be buffered. performingUpdateboolean True indicates that an update is in progress. updateTimernumber <nullable>
A non-null value indicates that an update is scheduled. waitingToClearBufferboolean True indicates that the buffer must be cleared after the current update finishes. waitingToFlushBufferboolean True indicates that the buffer must be flushed after it is cleared. clearingBufferboolean True indicates that the buffer is being cleared. recoveringboolean True indicates that the last segment was not appended because it could not fit in the buffer. hasErrorboolean True indicates that the stream has encountered an error and has stopped updates. resumeAtnumber An override for the time to start performing updates at. If the playhead is behind this time, update_() will still start fetching segments from this time. If the playhead is ahead of the time, this field is ignored. - Source: