-
Hls.DefaultConfig get/set
capLevelToPlayerSize
capLevelOnFPSDrop
debug
autoStartLoad
startPosition
defaultAudioCodec
initialLiveManifestSize
maxBufferLength
maxBufferSize
maxBufferHole
maxStarvationDelay
maxLoadingDelay
lowBufferWatchdogPeriod
(deprecated)highBufferWatchdogPeriod
nudgeOffset
nudgeMaxRetry
maxFragLookUpTolerance
maxMaxBufferLength
liveSyncDurationCount
liveMaxLatencyDurationCount
liveSyncDuration
liveMaxLatencyDuration
liveDurationInfinity
liveBackBufferLength
enableWorker
enableSoftwareAES
startLevel
fragLoadingTimeOut
/manifestLoadingTimeOut
/levelLoadingTimeOut
fragLoadingMaxRetry
/manifestLoadingMaxRetry
/levelLoadingMaxRetry
fragLoadingMaxRetryTimeout
/manifestLoadingMaxRetryTimeout
/levelLoadingMaxRetryTimeout
fragLoadingRetryDelay
/manifestLoadingRetryDelay
/levelLoadingRetryDelay
startFragPrefetch
testBandwidth
fpsDroppedMonitoringPeriod
fpsDroppedMonitoringThreshold
appendErrorMaxRetry
loader
fLoader
pLoader
xhrSetup
fetchSetup
abrController
bufferController
capLevelController
fpsController
timelineController
enableWebVTT
enableCEA708Captions
captionsTextTrack1Label
captionsTextTrack1LanguageCode
captionsTextTrack2Label
captionsTextTrack2LanguageCode
captionsTextTrack3Label
captionsTextTrack3LanguageCode
captionsTextTrack4Label
captionsTextTrack4LanguageCode
renderTextTracksNatively
stretchShortVideoTrack
maxAudioFramesDrift
forceKeyFrameOnDiscontinuity
abrEwmaFastLive
abrEwmaSlowLive
abrEwmaFastVoD
abrEwmaSlowVoD
abrEwmaDefaultEstimate
abrBandWidthFactor
abrBandWidthUpFactor
abrMaxWithRealBitrate
minAutoBitrate
emeEnabled
widevineLicenseUrl
drmSystemOptions
requestMediaKeySystemAccessFunc
First include https://cdn.jsdelivr.net/npm/hls.js@latest
(or /hls.js
for unminified) in your web page.
<script src="//cdn.jsdelivr.net/npm/hls.js@latest"></script>
Invoke the following static method: Hls.isSupported()
to check whether your browser is supporting MediaSource Extensions.
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<script>
if (Hls.isSupported()) {
console.log("hello hls.js!");
}
</script>
Let's
- create a
<video>
element - create a new HLS object
- bind video element to this HLS object
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<video id="video"></video>
<script>
if (Hls.isSupported()) {
var video = document.getElementById('video');
var hls = new Hls();
// bind them together
hls.attachMedia(video);
// MEDIA_ATTACHED event is fired by hls object once MediaSource is ready
hls.on(Hls.Events.MEDIA_ATTACHED, function () {
console.log("video and hls.js are now bound together !");
});
}
</script>
You need to provide manifest URL as below:
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<video id="video"></video>
<script>
if (Hls.isSupported()) {
var video = document.getElementById('video');
var hls = new Hls();
// bind them together
hls.attachMedia(video);
hls.on(Hls.Events.MEDIA_ATTACHED, function () {
console.log("video and hls.js are now bound together !");
hls.loadSource("http://my.streamURL.com/playlist.m3u8");
hls.on(Hls.Events.MANIFEST_PARSED, function (event, data) {
console.log("manifest loaded, found " + data.levels.length + " quality level");
});
});
}
</script>
Video is controlled through HTML <video>
element.
HTMLVideoElement control and events could be used seamlessly.
video.play();
All errors are signalled through a unique single event.
Each error is categorized by:
- its type:
Hls.ErrorTypes.NETWORK_ERROR
for network related errorsHls.ErrorTypes.MEDIA_ERROR
for media/video related errorsHls.ErrorTypes.OTHER_ERROR
for all other errors
- its details:
- refer to Errors details
- its fatality:
false
if error is not fatal, hls.js will try to recover ittrue
if error is fatal, an action is required to (try to) recover it.
Full details are described below
See sample code below to listen to errors:
hls.on(Hls.Events.ERROR, function (event, data) {
var errorType = data.type;
var errorDetails = data.details;
var errorFatal = data.fatal;
switch(data.details) {
case Hls.ErrorDetails.FRAG_LOAD_ERROR:
// ....
break;
default:
break;
}
});
hls.js provides means to 'try to' recover fatal network and media errors, through these 2 methods:
Should be invoked to recover network error.
Should be invoked to recover media error.
hls.on(Hls.Events.ERROR, function (event, data) {
if (data.fatal) {
switch(data.type) {
case Hls.ErrorTypes.NETWORK_ERROR:
// try to recover network error
console.log("fatal network error encountered, try to recover");
hls.startLoad();
break;
case Hls.ErrorTypes.MEDIA_ERROR:
console.log("fatal media error encountered, try to recover");
hls.recoverMediaError();
break;
default:
// cannot recover
hls.destroy();
break;
}
}
});
If media error are still raised after calling hls.recoverMediaError()
,
calling this method, could be useful to workaround audio codec mismatch.
the workflow should be:
on First Media Error : call hls.recoverMediaError()
if another Media Error is raised 'quickly' after this first Media Error : first call hls.swapAudioCodec()
, then call hls.recoverMediaError()
.
hls.destroy()
should be called to free used resources and destroy hls context.
Configuration parameters could be provided to hls.js upon instantiation of Hls
object.
var config = {
autoStartLoad: true,
startPosition: -1,
debug: false,
capLevelOnFPSDrop: false,
capLevelToPlayerSize: false,
defaultAudioCodec: undefined,
initialLiveManifestSize: 1,
maxBufferLength: 30,
maxMaxBufferLength: 600,
maxBufferSize: 60*1000*1000,
maxBufferHole: 0.5,
lowBufferWatchdogPeriod: 0.5,
highBufferWatchdogPeriod: 3,
nudgeOffset: 0.1,
nudgeMaxRetry: 3,
maxFragLookUpTolerance: 0.25,
liveSyncDurationCount: 3,
liveMaxLatencyDurationCount: Infinity,
liveDurationInfinity: false,
liveBackBufferLength: Infinity,
enableWorker: true,
enableSoftwareAES: true,
manifestLoadingTimeOut: 10000,
manifestLoadingMaxRetry: 1,
manifestLoadingRetryDelay: 1000,
manifestLoadingMaxRetryTimeout: 64000,
startLevel: undefined,
levelLoadingTimeOut: 10000,
levelLoadingMaxRetry: 4,
levelLoadingRetryDelay: 1000,
levelLoadingMaxRetryTimeout: 64000,
fragLoadingTimeOut: 20000,
fragLoadingMaxRetry: 6,
fragLoadingRetryDelay: 1000,
fragLoadingMaxRetryTimeout: 64000,
startFragPrefetch: false,
testBandwidth: true,
fpsDroppedMonitoringPeriod: 5000,
fpsDroppedMonitoringThreshold: 0.2,
appendErrorMaxRetry: 3,
loader: customLoader,
fLoader: customFragmentLoader,
pLoader: customPlaylistLoader,
xhrSetup: XMLHttpRequestSetupCallback,
fetchSetup: FetchSetupCallback,
abrController: AbrController,
bufferController: BufferController,
capLevelController: CapLevelController,
fpsController: FPSController,
timelineController: TimelineController,
enableWebVTT: true,
enableCEA708Captions: true,
stretchShortVideoTrack: false,
maxAudioFramesDrift: 1,
forceKeyFrameOnDiscontinuity: true,
abrEwmaFastLive: 3.0,
abrEwmaSlowLive: 9.0,
abrEwmaFastVoD: 3.0,
abrEwmaSlowVoD: 9.0,
abrEwmaDefaultEstimate: 500000,
abrBandWidthFactor: 0.95,
abrBandWidthUpFactor: 0.7,
abrMaxWithRealBitrate: false,
maxStarvationDelay: 4,
maxLoadingDelay: 4,
minAutoBitrate: 0,
emeEnabled: false,
widevineLicenseUrl: undefined,
drmSystemOptions: {},
requestMediaKeySystemAccessFunc: requestMediaKeySystemAccess
};
var hls = new Hls(config);
This getter/setter allows to retrieve and override Hls default configuration. This configuration will be applied by default to all instances.
(default: false
)
- if set to true, the adaptive algorithm with limit levels usable in auto-quality by the HTML video element dimensions (width and height). If dimensions between multiple levels are equal, the cap is chosen as the level with the greatest bandwidth.
- if set to false, levels will not be limited. All available levels could be used in auto-quality mode taking only bandwidth into consideration.
(default: false
)
- when set to true, if the number of dropped frames over the period
config.fpsDroppedMonitoringPeriod
exceeds the ratio set byconfig.fpsDroppedMonitoringThreshold
, then the quality level is dropped and capped at this lower level. - when set to false, levels will not be limited. All available levels could be used in auto-quality mode taking only bandwidth into consideration.
(default: false
)
Setting config.debug = true;
will turn on debug logs on JS console.
A logger object could also be provided for custom logging: config.debug = customLogger;
.
(default: true
)
- if set to true, start level playlist and first fragments will be loaded automatically, after triggering of
Hls.Events.MANIFEST_PARSED
event - if set to false, an explicit API call (
hls.startLoad(startPosition=-1)
) will be needed to start quality level/fragment loading.
(default -1)
- if set to -1, playback will start from initialTime=0 for VoD and according to
liveSyncDuration/liveSyncDurationCount
config params for Live - Otherwise, playback will start from predefined value. (unless stated otherwise in
autoStartLoad=false
mode : in that case startPosition can be overrided usinghls.startLoad(startPosition)
).
(default: undefined
)
If audio codec is not signaled in variant manifest, or if only a stream manifest is provided, hls.js tries to guess audio codec by parsing audio sampling rate in ADTS header. If sampling rate is less or equal than 22050 Hz, then hls.js assumes it is HE-AAC, otherwise it assumes it is AAC-LC. This could result in bad guess, leading to audio decode error, ending up in media error. It is possible to hint default audiocodec to hls.js by configuring this value as below:
mp4a.40.2
(AAC-LC) ormp4a.40.5
(HE-AAC) orundefined
(guess based on sampling rate)
(default 1)
number of segments needed to start a playback of Live stream. Buffering will begin after N chunks are available in the current playlist. If you want playback to begin liveSyncDurationCount
chunks from the live edge at the beginning of a stream, set initialLiveManifestSize
to liveSyncDurationCount
or higher.
(default: 30
seconds)
Maximum buffer length in seconds. If buffer length is/become less than this value, a new fragment will be loaded. This is the guaranteed buffer length hls.js will try to reach, regardless of maxBufferSize.
(default: 60 MB)
'Minimum' maximum buffer size in bytes. If buffer size upfront is bigger than this value, no fragment will be loaded.
(default: 0.5
seconds)
'Maximum' inter-fragment buffer hole tolerance that hls.js can cope with when searching for the next fragment to load. When switching between quality level, fragments might not be perfectly aligned. This could result in small overlapping or hole in media buffer. This tolerance factor helps cope with this.
(default 4s)
ABR algorithm will always try to choose a quality level that should avoid rebuffering.
In case no quality level with this criteria can be found (lets say for example that buffer length is 1s,
but fetching a fragment at lowest quality is predicted to take around 2s ... ie we can forecast around 1s of rebuffering ...)
then ABR algorithm will try to find a level that should guarantee less than maxStarvationDelay
of buffering.
(default 4s)
max video loading delay used in automatic start level selection : in that mode ABR controller will ensure that video loading time
(ie the time to fetch the first fragment at lowest quality level + the time to fetch the fragment at the appropriate quality level is less than maxLoadingDelay
)
(default 0.5s)
if media element is expected to play and if currentTime has not moved for more than lowBufferWatchdogPeriod
and if there are less than maxBufferHole
seconds buffered upfront, hls.js will try to nudge playhead to recover playback
(default 3s)
if media element is expected to play and if currentTime has not moved for more than highBufferWatchdogPeriod
and if there are more than maxBufferHole
seconds buffered upfront, hls.js will try to nudge playhead to recover playback
(default 0.1s)
In case playback continues to stall after first playhead nudging, currentTime will be nudged evenmore following nudgeOffset to try to restore playback. media.currentTime += (nb nudge retry -1)*nudgeOffset
(default 3)
Max nb of nudge retries before hls.js raise a fatal BUFFER_STALLED_ERROR
(default 0.25s)
This tolerance factor is used during fragment lookup. Instead of checking whether buffered.end is located within [start, end] range, frag lookup will be done by checking within [start-maxFragLookUpTolerance, end-maxFragLookUpTolerance] range.
This tolerance factor is used to cope with situations like:
buffered.end = 9.991
frag[0] : [0,10]
frag[1] : [10,20]
buffered.end
is within frag[0]
range, but as we are close to frag[1]
, frag[1]
should be choosen instead
If maxFragLookUpTolerance = 0.2
, this lookup will be adjusted to
frag[0] : [-0.2,9.8]
frag[1] : [9.8,19.8]
This time, buffered.end
is within frag[1]
range, and frag[1]
will be the next fragment to be loaded, as expected.
(default 600s)
Maximum buffer length in seconds. Hls.js will never exceed this value, even if maxBufferSize
is not reached yet.
hls.js tries to buffer up to a maximum number of bytes (60 MB by default) rather than to buffer up to a maximum nb of seconds. this is to mimic the browser behaviour (the buffer eviction algorithm is starting after the browser detects that video buffer size reaches a limit in bytes)
maxBufferLength
is the minimum guaranteed buffer length that hls.js will try to achieve, even if that value exceeds the amount of bytes 60 MB of memory.
maxMaxBufferLength
acts as a capping value, as if bitrate is really low, you could need more than one hour of buffer to fill 60 MB.
(default: 3
)
edge of live delay, expressed in multiple of EXT-X-TARGETDURATION
.
if set to 3, playback will start from fragment N-3, N being the last fragment of the live playlist.
decreasing this value is likely to cause playback stalls.
(default: Infinity
)
maximum delay allowed from edge of live, expressed in multiple of EXT-X-TARGETDURATION
.
if set to 10, the player will seek back to liveSyncDurationCount
whenever the next fragment to be loaded is older than N-10, N being the last fragment of the live playlist.
If set, this value must be stricly superior to liveSyncDurationCount
a value too close from liveSyncDurationCount
is likely to cause playback stalls.
(default: undefined
)
Alternative parameter to liveSyncDurationCount
, expressed in seconds vs number of segments.
If defined in the configuration object, liveSyncDuration
will take precedence over the default liveSyncDurationCount
.
You can't define this parameter and either liveSyncDurationCount
or liveMaxLatencyDurationCount
in your configuration object at the same time.
A value too low (inferior to ~3 segment durations) is likely to cause playback stalls.
(default: undefined
)
Alternative parameter to liveMaxLatencyDurationCount
, expressed in seconds vs number of segments.
If defined in the configuration object, liveMaxLatencyDuration
will take precedence over the default liveMaxLatencyDurationCount
.
If set, this value must be stricly superior to liveSyncDuration
which must be defined as well.
You can't define this parameter and either liveSyncDurationCount
or liveMaxLatencyDurationCount
in your configuration object at the same time.
A value too close from liveSyncDuration
is likely to cause playback stalls.
(default: false
)
Override current Media Source duration to Infinity
for a live broadcast.
Useful, if you are building a player which relies on native UI capabilities in modern browsers.
If you want to have a native Live UI in environments like iOS Safari, Safari, Android Google Chrome, etc. set this value to true
.
(default: Infinity
)
Sets the maximum length of the buffer, in seconds, to keep during a live stream. Any video buffered past this time will be evicted. Infinity
means no restriction on back buffer length; 0
keeps the minimum amount. The minimum amount is equal to the target duration of a segment to ensure that current playback is not interrupted.
(default: true
)
Enable WebWorker (if available on browser) for TS demuxing/MP4 remuxing, to improve performance and avoid lag/frame drops.
(default: true
)
Enable to use JavaScript version AES decryption for fallback of WebCrypto API.
(default: undefined
)
When set, use this level as the default hls.startLevel. Keep in mind that the startLevel set with the API takes precedence over config.startLevel configuration parameter.
(default: 20000ms for fragment / 10000ms for level and manifest)
URL Loader timeout. A timeout callback will be triggered if loading duration exceeds this timeout. no further action will be done : the load operation will not be cancelled/aborted. It is up to the application to catch this event and treat it as needed.
(default: 6
/ 1
/ 4
)
Max number of load retries.
(default: 64000
ms)
Maximum frag/manifest/key retry timeout (in milliseconds) in case I/O errors are met.
This value is used as capping value for exponential grow of loading retry delays
, i.e. the retry delay can not be bigger than this value, but overall time will be based on the overall number of retries.
(default: 1000
ms)
Initial delay between XMLHttpRequest
error and first load retry (in ms).
Any I/O error will trigger retries every 500ms,1s,2s,4s,8s, ... capped to fragLoadingMaxRetryTimeout
/ manifestLoadingMaxRetryTimeout
/ levelLoadingMaxRetryTimeout
value (exponential backoff).
Prefetch start fragment although media not attached.
(default: false
)
Start prefetching start fragment although media not attached yet.
(default: true
)
Load the first fragment of the lowest level to establish a bandwidth estimate before selecting the first auto-level.
Disable this test if you'd like to provide your own estimate or use the default abrEwmaDefaultEstimate
.
(default: 5000)
The period used by the default fpsController
to observe fpsDroppedMonitoringThreshold
.
(default: 0.2)
The ratio of frames dropped to frames elapsed within fpsDroppedMonitoringPeriod
needed for the default fpsController
to emit an FPS_DROP
event.
(default: 3
)
Max number of sourceBuffer.appendBuffer()
retry upon error.
Such error could happen in loop with UHD streams, when internal buffer is full. (Quota Exceeding Error will be triggered). In that case we need to wait for the browser to evict some data before being able to append buffer correctly.
(default: standard XMLHttpRequest
-based URL loader)
Override standard URL loader by a custom one. Use composition and wrap internal implementation which could be exported by Hls.DefaultConfig.loader
.
Could be useful for P2P or stubbing (testing).
Use this, if you want to overwrite both the fragment and the playlist loader.
Note: If fLoader
or pLoader
are used, they overwrite loader
!
var customLoader = function () {
/**
* Calling load() will start retrieving content located at given URL (HTTP GET).
*
* @param {object} context - loader context
* @param {string} context.url - target URL
* @param {string} context.responseType - loader response type (arraybuffer or default response type for playlist)
* @param {number} [context.rangeStart] - start byte range offset
* @param {number} [context.rangeEnd] - end byte range offset
* @param {Boolean} [context.progressData] - true if onProgress should report partial chunk of loaded content
* @param {object} config - loader config params
* @param {number} config.maxRetry - Max number of load retries
* @param {number} config.timeout - Timeout after which `onTimeOut` callback will be triggered (if loading is still not finished after that delay)
* @param {number} config.retryDelay - Delay between an I/O error and following connection retry (ms). This to avoid spamming the server
* @param {number} config.maxRetryDelay - max connection retry delay (ms)
* @param {object} callbacks - loader callbacks
* @param {onSuccessCallback} callbacks.onSuccess - Callback triggered upon successful loading of URL.
* @param {onProgressCallback} callbacks.onProgress - Callback triggered while loading is in progress.
* @param {onErrorCallback} callbacks.onError - Callback triggered if any I/O error is met while loading fragment.
* @param {onTimeoutCallback} callbacks.onTimeout - Callback triggered if loading is still not finished after a certain duration.
@callback onSuccessCallback
@param response {object} - response data
@param response.url {string} - response URL (which might have been redirected)
@param response.data {string/arraybuffer/sharedarraybuffer} - response data (reponse type should be as per context.responseType)
@param stats {object} - loading stats
@param stats.trequest {number} - performance.now() just after load() has been called
@param stats.tfirst {number} - performance.now() of first received byte
@param stats.tload {number} - performance.now() on load complete
@param stats.loaded {number} - nb of loaded bytes
@param [stats.bw] {number} - download bandwidth in bits/s
@param stats.total {number} - total nb of bytes
@param context {object} - loader context
@param networkDetails {object} - loader network details (the xhr for default loaders)
@callback onProgressCallback
@param stats {object} - loading stats
@param stats.trequest {number} - performance.now() just after load() has been called
@param stats.tfirst {number} - performance.now() of first received byte
@param stats.loaded {number} - nb of loaded bytes
@param [stats.total] {number} - total nb of bytes
@param [stats.bw] {number} - current download bandwidth in bits/s (monitored by ABR controller to control emergency switch down)
@param context {object} - loader context
@param data {string/arraybuffer/sharedarraybuffer} - onProgress data (should be defined only if context.progressData === true)
@param networkDetails {object} - loader network details (the xhr for default loaders)
@callback onErrorCallback
@param error {object} - error data
@param error.code {number} - error status code
@param error.text {string} - error description
@param context {object} - loader context
@param networkDetails {object} - loader network details (the xhr for default loaders)
@callback onTimeoutCallback
@param stats {object} - loading stats
@param context {object} - loader context
*/
this.load = function (context, config, callbacks) {};
/** Abort any loading in progress. */
this.abort = function () {};
/** Destroy loading context. */
this.destroy = function () {};
}
(default: undefined
)
This enables the manipulation of the fragment loader.
Note: This will overwrite the default loader
, as well as your own loader function (see above).
var customFragmentLoader = function() {
// See `loader` for details.
}
(default: undefined
)
This enables the manipulation of the playlist loader.
Note: This will overwrite the default loader
, as well as your own loader function (see above).
var customPlaylistLoader = function() {
// See `loader` for details.
}
if you want to just make slight adjustements to existing loader implementation, you can also eventually override it, see an example below :
// special playlist post processing function
function process(playlist) {
return playlist;
}
class pLoader extends Hls.DefaultConfig.loader {
constructor(config) {
super(config);
var load = this.load.bind(this);
this.load = function(context, config, callbacks) {
if(context.type == 'manifest') {
var onSuccess = callbacks.onSuccess;
callbacks.onSuccess = function(response, stats, context) {
response.data = process(response.data);
onSuccess(response,stats,context);
}
}
load(context,config,callbacks);
};
}
}
var hls = new Hls({
pLoader: pLoader,
});
(default: undefined
)
XMLHttpRequest
customization callback for default XHR based loader.
Parameter should be a function with two arguments (xhr: XMLHttpRequest, url: string)
.
If xhrSetup
is specified, default loader will invoke it before calling xhr.send()
.
This allows user to easily modify/setup XHR. See example below.
var config = {
xhrSetup: function(xhr, url) {
xhr.withCredentials = true; // do send cookies
}
}
(default: undefined
)
Fetch
customization callback for Fetch based loader.
Parameter should be a function with two arguments (context
and Request Init Params
).
If fetchSetup
is specified and Fetch loader is used, fetchSetup
will be triggered to instantiate Request Object.
This allows user to easily tweak Fetch loader. See example below.
var config = {
fetchSetup: function(context, initParams) {
// Always send cookies, even for cross-origin calls.
initParams.credentials = 'include';
return new Request(context.url,initParams);
}
}
(default: internal ABR controller)
Customized Adaptive Bitrate Streaming Controller.
Parameter should be a class providing 2 getters, 2 setters and a destroy()
method:
- get/set
nextAutoLevel
: return next auto-quality level/force next auto-quality level that should be returned (currently used for emergency switch down) - get/set
autoLevelCapping
: capping/max level value that could be used by ABR Controller destroy()
: should clean-up all used resources
(default: internal buffer controller)
Customized buffer controller.
A class in charge of managing SourceBuffers.
(default: internal cap level controller)
Customized level capping controller.
A class in charge of setting hls.autoLevelCapping
to limit ABR level selection based on player size.
Enable the default cap level controller by setting capLevelToPlayerSize
to true
.
(default: internal fps controller)
Customized fps controller.
A class in charge of monitoring frame rate, that emits FPS_DROP
events when frames dropped exceeds configured threshold.
Enable the default fps controller by setting capLevelOnFPSDrop
to true
.
(default: internal track timeline controller)
Customized text track syncronization controller.
Parameter should be a class with a destroy()
method:
destroy()
: should clean-up all used resources
(default: true
)
whether or not to enable WebVTT captions on HLS
parameter should be a boolean
(default: true
)
whether or not to enable CEA-708 captions
parameter should be a boolean
(default: English
)
Label for the text track generated for CEA-708 captions track 1. This is how it will appear in the browser's native menu for subtitles and captions.
parameter should be a string
(default: en
)
RFC 3066 language code for the text track generated for CEA-708 captions track 1.
parameter should be a string
(default: Spanish
)
Label for the text track generated for CEA-708 captions track 2. This is how it will appear in the browser's native menu for subtitles and captions.
parameter should be a string
(default: es
)
RFC 3066 language code for the text track generated for CEA-708 captions track 2.
parameter should be a string
(default: Unknown CC
)
Label for the text track generated for CEA-708 captions track 3. This is how it will appear in the browser's native menu for subtitles and captions.
parameter should be a string
(default: ``)
RFC 3066 language code for the text track generated for CEA-708 captions track 3.
parameter should be a string
(default: Unknown CC
)
Label for the text track generated for CEA-708 captions track 4. This is how it will appear in the browser's native menu for subtitles and captions.
parameter should be a string
(default: ``)
RFC 3066 language code for the text track generated for CEA-708 captions track 4.
parameter should be a string
(default: true
)
Whether or not render captions natively using the HTMLMediaElement's TextTracks. Disable native captions rendering
when you want to handle rending of track and track cues using Hls.Events.NON_NATIVE_TEXT_TRACKS_FOUND
and Hls.Events.CUES_PARSED
events.
parameter should be a boolean
(default: false
)
If a segment's video track is shorter than its audio track by > maxBufferHole
, extend the final video frame's duration to match the audio track's duration.
This helps playback continue in certain cases that might otherwise get stuck.
parameter should be a boolean
(default: 1
)
Browsers are really strict about audio frames timings. They usually play audio frames one after the other, regardless of the timestamps advertised in the fmp4. If audio timestamps are not consistent (consecutive audio frames too close or too far from each other), audio will easily drift. hls.js is restamping audio frames so that the distance between consecutive audio frame remains constant. if the distance is larger than the max allowed drift, hls.js will either
- drop the next audio frame if distance is too small (if next audio frame timestamp is smaller than expected time stamp - max allowed drift)
- insert silent frames if distance is too big (next audio frame timestamp is bigger than expected timestamp + max allowed drift)
parameter should be an integer representing the max number of audio frames allowed to drift. keep in mind that one audio frame is 1024 audio samples (if using AAC), at 44.1 kHz, it gives 1024/44100 = 23ms
(default: true
)
Whether or not to force having a key frame in the first AVC sample after a discontinuity. If set to true, after a discontinuity, the AVC samples without any key frame will be dropped until finding one that contains a key frame. If set to false, all AVC samples will be kept, which can help avoid holes in the stream. Setting this parameter to false can also generate decoding weirdness when switching level or seeking.
parameter should be a boolean
(default: 3.0
)
Fast bitrate Exponential moving average half-life, used to compute average bitrate for Live streams. Half of the estimate is based on the last abrEwmaFastLive seconds of sample history. Each of the sample is weighted by the fragment loading duration.
parameter should be a float greater than 0
(default: 9.0
)
Slow bitrate Exponential moving average half-life, used to compute average bitrate for Live streams. Half of the estimate is based on the last abrEwmaSlowLive seconds of sample history. Each of the sample is weighted by the fragment loading duration.
parameter should be a float greater than abrEwmaFastLive
(default: 3.0
)
Fast bitrate Exponential moving average half-life, used to compute average bitrate for VoD streams. Half of the estimate is based on the last abrEwmaFastVoD seconds of sample history. Each of the sample is weighted by the fragment loading duration.
parameter should be a float greater than 0
(default: 9.0
)
Slow bitrate Exponential moving average half-life, used to compute average bitrate for VoD streams. Half of the estimate is based on the last abrEwmaSlowVoD seconds of sample history. Each of the sample is weighted by the fragment loading duration.
parameter should be a float greater than abrEwmaFastVoD
(default: 500000
)
Default bandwidth estimate in bits/s prior to collecting fragment bandwidth samples.
parameter should be a float
(default: 0.95
)
Scale factor to be applied against measured bandwidth average, to determine whether we can stay on current or lower quality level.
If abrBandWidthFactor * bandwidth average > level.bitrate
then ABR can switch to that level providing that it is equal or less than current level.
(default: 0.7
)
Scale factor to be applied against measured bandwidth average, to determine whether we can switch up to a higher quality level.
If abrBandWidthUpFactor * bandwidth average > level.bitrate
then ABR can switch up to that quality level.
(default: false
)
max bitrate used in ABR by avg measured bitrate
i.e. if bitrate signaled in variant manifest for a given level is 2Mb/s but average bitrate measured on this level is 2.5Mb/s,
then if config value is set to true
, ABR will use 2.5 Mb/s for this quality level.
(default: 0
)
Return the capping/min bandwidth value that could be used by automatic level selection algorithm. Useful when browser or tab of the browser is not in the focus and bandwidth drops
(default: false
)
Set to true
to enable DRM key system access and license retrieval.
(default: undefined
)
The Widevine license server URL.
(default: {}
)
Allows for the customization of audioRobustness
and videoRobustness
in EMEController. Ex:
{
audioRobustness: 'SW_SECURE_CRYPTO',
videoRobustness: 'SW_SECURE_CRYPTO'
}
With the default argument, ''
will be specified for each option (i.e. no specific robustness required).
(default: A function that returns the result of window.navigator.requestMediaKeySystemAccess.bind(window.navigator)
or null
)
Allows for the customization of window.navigator.requestMediaKeySystemAccess
.
Calling this method will:
- bind videoElement and hls instance,
- create MediaSource and set it as video source
- once MediaSource object is successfully created, MEDIA_ATTACHED event will be fired.
Calling this method will:
- unbind VideoElement from hls instance,
- signal the end of the stream on MediaSource
- reset video source (
video.src = ''
)
- get: Return the bound videoElement from the hls instance
By default, hls.js handles quality switch automatically, using heuristics based on fragment loading bitrate and quality level bandwidth exposed in the variant manifest. It is also possible to manually control quality swith using below API.
- get: Return array of available quality levels.
- get: Return current playback quality level.
- set: Trigger an immediate quality level switch to new quality level. This will pause the video if it was playing, flush the whole buffer, and fetch fragment matching with current position and requested quality level. Then resume the video if needed once fetched fragment will have been buffered.
Set to -1
for automatic level selection.
- get: Return next playback quality level (playback quality level for next buffered fragment). Return
-1
if next fragment not buffered yet. - set: Trigger a quality level switch for next fragment. This could eventually flush already buffered next fragment.
Set to -1
for automatic level selection.
- get: return last loaded fragment quality level.
- set: set quality level for next loaded fragment.
Set to -1
for automatic level selection.
- get: Return quality level that will be used to load next fragment.
- set: Force quality level for next loaded fragment. Quality level will be forced only for that fragment.
After a fragment at this quality level has been loaded,
hls.loadLevel
will prevail.
- get: First level index (index of first level appearing in Manifest. it is usually defined as start level hint for player).
- get/set: Start level index (level of first fragment that will be played back).
- if not overrided by user: first level appearing in manifest will be used as start level.
- if -1: automatic start level selection, playback will start from level matching download bandwidth (determined from download of first segment).
Default value is hls.firstLevel
.
- get: Tell whether auto level selection is enabled or not.
- get/set: Capping/max level value that could be used by ABR Controller.
Default value is -1
(no level capping).
- get: Enables or disables level capping. If disabled after previously enabled,
nextLevelSwitch
will be immediately called. - set: Whether level capping is enabled.
Default value is set via capLevelToPlayerSize
in config.
get: Returns the current bandwidth estimate in bits/s, if available. Otherwise, NaN
is returned.
Remove a loaded level from the list of levels, or a level url in from a list of redundant level urls. This can be used to remove a rendition or playlist url that errors frequently from the list of levels that a user or hls.js can choose from.
Modifying the levels this way will result in a Hls.Events.LEVELS_UPDATED
event being triggered.
Static getter: return hls.js dist version number.
By default, hls.js will automatically start loading quality level playlists, and fragments after Hls.Events.MANIFEST_PARSED
event has been triggered (and video element has been attached).
However if config.autoStartLoad
is set to false
, the following method needs to be called to manually start playlist and fragments loading:
Start/restart playlist/fragment loading. this is only effective if MANIFEST_PARSED event has been triggered and video element has been attached to hls object.
startPosition is the initial position in the playlist. If startPosition is not set to -1, it allows to override default startPosition to the one you want (it will bypass hls.config.liveSync* config params for Live for example, so that user can start playback from whatever position)
stop playlist/fragment loading. could be resumed later on by calling hls.startLoad()
get : array of audio tracks exposed in manifest
get/set : audio track id (returned by)
get : array of subtitle tracks exposed in manifest
get/set : subtitle track id (returned by). Returns -1 if no track is visible. Set to -1 to disable all subtitle tracks.
(default: true
)
get/set : if set to true the active subtitle track mode will be set to showing
and the browser will display the active subtitles. If set to false, the mode will be set to hidden
.
get : position of live sync point (ie edge of live position minus safety delay defined by hls.config.liveSyncDuration
)
hls.js fires a bunch of events, that could be registered and unregistered as below:
function onLevelLoaded (event, data) {
var level_duration = data.details.totalduration;
}
// subscribe event
hls.on(Hls.Events.LEVEL_LOADED, onLevelLoaded);
// unsubscribe event
hls.off(Hls.Events.LEVEL_LOADED, onLevelLoaded);
// subscribe for a single event call only
hls.once(Hls.Events.LEVEL_LOADED, onLevelLoaded);
Full list of Events is available below:
Hls.Events.MEDIA_ATTACHING
- fired before MediaSource is attaching to media element- data: { media }
Hls.Events.MEDIA_ATTACHED
- fired when MediaSource has been succesfully attached to media element- data: { }
Hls.Events.MEDIA_DETACHING
- fired before detaching MediaSource from media element- data: { }
Hls.Events.MEDIA_DETACHED
- fired when MediaSource has been detached from media element- data: { }
Hls.Events.BUFFER_RESET
- fired when we buffer is going to be reset- data: { }
Hls.Events.BUFFER_CODECS
- fired when we know about the codecs that we need buffers for to push into- data: { tracks : { container, codec, levelCodec, initSegment, metadata } }
Hls.Events.BUFFER_CREATED
- fired when sourcebuffers have been created- data: { tracks : tracks }
Hls.Events.BUFFER_APPENDING
- fired when we append a segment to the buffer - data: { segment : segment object }Hls.Events.BUFFER_APPENDED
- fired when we are done with appending a media segment to the buffer- data: { parent : segment parent that triggered
BUFFER_APPENDING
, pending : nb of segments waiting for appending for this segment parent, timeRanges : { video: TimeRange, audio: TimeRange }
- data: { parent : segment parent that triggered
Hls.Events.BUFFER_EOS
- fired when the stream is finished and we want to notify the media buffer that there will be no more data- data: { }
Hls.Events.BUFFER_FLUSHING
- fired when the media buffer should be flushed- data: { startOffset, endOffset }
Hls.Events.BUFFER_FLUSHED
- fired when the media buffer has been flushed- data: { startOffset, endOffset }
Hls.Events.MANIFEST_LOADING
- fired to signal that a manifest loading starts- data: { url : manifestURL }
Hls.Events.MANIFEST_LOADED
- fired after manifest has been loaded- data: { levels : [available quality levels], audioTracks : [ available audio tracks], url : manifestURL, stats : { trequest, tfirst, tload, mtime}, sessionData: [parsed #EXT-X-SESSION-DATA]}
Hls.Events.MANIFEST_PARSED
- fired after manifest has been parsed- data: { levels : [ available quality levels ], firstLevel : index of first quality level appearing in Manifest }
Hls.Events.LEVEL_SWITCHING
- fired when a level switch is requested- data: {
level
object (please see below for more information) }
- data: {
Hls.Events.LEVEL_SWITCHED
- fired when a level switch is effective- data: { level : id of new level }
Hls.Events.LEVEL_LOADING
- fired when a level playlist loading starts- data: { url : level URL, level : id of level being loaded }
Hls.Events.LEVEL_LOADED
- fired when a level playlist loading finishes- data: { details :
levelDetails
object (please see below for more information), level : id of loaded level, stats : { trequest, tfirst, tload, mtime } }
- data: { details :
Hls.Events.LEVEL_UPDATED
- fired when a level's details have been updated based on previous details, after it has been loaded- data: { details :
levelDetails
object (please see below for more information), level : id of updated level }
- data: { details :
Hls.Events.LEVEL_PTS_UPDATED
- fired when a level's PTS information has been updated after parsing a fragment- data: { details :
levelDetails
object (please see below for more information), level : id of updated level, drift: PTS drift observed when parsing last fragment }
- data: { details :
Hls.Events.LEVELS_UPDATED
- fired when a level is removed after callingremoveLevel()
- data: { levels : [ available quality levels ] }
Hls.Events.AUDIO_TRACKS_UPDATED
- fired to notify that audio track lists has been updated- data: { audioTracks : audioTracks }
Hls.Events.AUDIO_TRACK_SWITCHING
- fired when an audio track switching is requested- data: { id : audio track id }
Hls.Events.AUDIO_TRACK_SWITCHED
- fired when an audio track switch actually occurs- data: { id : audio track id }
Hls.Events.AUDIO_TRACK_LOADING
- fired when an audio track loading starts- data: { url : audio track URL, id : audio track id }
Hls.Events.AUDIO_TRACK_LOADED
- fired when an audio track loading finishes- data: { details :
levelDetails
object (please see below for more information), id : audio track id, stats : { trequest, tfirst, tload, mtime} }
- data: { details :
Hls.Events.SUBTITLE_TRACKS_UPDATED
- fired to notify that subtitle track lists has been updated- data: { subtitleTracks : subtitleTracks }
Hls.Events.SUBTITLE_TRACK_SWITCH
- fired when a subtitle track switch occurs- data: { id : subtitle track id }
Hls.Events.SUBTITLE_TRACK_LOADING
- fired when a subtitle track loading starts- data: { url : audio track URL, id : audio track id }
Hls.Events.SUBTITLE_TRACK_LOADED
- fired when a subtitle track loading finishes- data: { details :
levelDetails
object (please see below for more information), id : subtitle track id, stats : { trequest, tfirst, tload, mtime} }
- data: { details :
Hls.Events.SUBTITLE_FRAG_PROCESSED
- fired when a subtitle fragment has been processed- data: { success : boolean, frag : the processed frag }
Hls.Events.INIT_PTS_FOUND
- fired when the first timestamp is found- data: { d : demuxer id, initPTS: initPTS, timescale: timescale, frag : fragment object }
Hls.Events.FRAG_LOADING
- fired when a fragment loading starts- data: { frag : fragment object }
Hls.Events.FRAG_LOAD_PROGRESS
- fired when a fragment load is in progress- data: { frag : fragment object with frag.loaded=stats.loaded, stats : { trequest, tfirst, loaded, total } }
Hls.Events.FRAG_LOAD_EMERGENCY_ABORTED
- Identifier for fragment load aborting for emergency switch down- data: { frag : fragment object }
Hls.Events.FRAG_LOADED
- fired when a fragment loading is completed- data: { frag : fragment object, payload : fragment payload, stats : { trequest, tfirst, tload, length}}
Hls.Events.FRAG_DECRYPTED
- fired when a fragment decryption is completed- data: { id : demuxer id, frag : fragment object, payload : fragment payload, stats : { tstart, tdecrypt}}
Hls.Events.FRAG_PARSING_INIT_SEGMENT
- fired when Init Segment has been extracted from fragment- data: { id: demuxer id, frag : fragment object, moov : moov MP4 box, codecs : codecs found while parsing fragment }
Hls.Events.FRAG_PARSING_USERDATA
- fired when parsing sei text is completed- data: { id : demuxer id, frag: fragment object, samples : [ sei samples pes ] }
Hls.Events.FRAG_PARSING_METADATA
- fired when parsing id3 is completed- data: { id: demuxer id, frag : fragment object, samples : [ id3 pes - pts and dts timestamp are relative, values are in seconds] }
Hls.Events.FRAG_PARSING_DATA
- fired when moof/mdat have been extracted from fragment- data: { id: demuxer id, frag : fragment object, moof : moof MP4 box, mdat : mdat MP4 box, startPTS : PTS of first sample, endPTS : PTS of last sample, startDTS : DTS of first sample, endDTS : DTS of last sample, type : stream type (audio or video), nb : number of samples }
Hls.Events.FRAG_PARSED
- fired when fragment parsing is completed- data: { id: demuxer id,frag : fragment object }
Hls.Events.FRAG_BUFFERED
- fired when fragment remuxed MP4 boxes have all been appended into SourceBuffer- data: { id: demuxer id, frag : fragment object, stats : { trequest, tfirst, tload, tparsed, tbuffered, length, bwEstimate } }
Hls.Events.FRAG_CHANGED
- fired when fragment matching with current video position is changing- data: { id : demuxer id, frag : fragment object }
Hls.Events.FPS_DROP
- triggered when FPS drop in last monitoring period is higher than given threshold- data: { curentDropped : nb of dropped frames in last monitoring period, currentDecoded : nb of decoded frames in last monitoring period, totalDroppedFrames : total dropped frames on this video element }
Hls.Events.FPS_DROP_LEVEL_CAPPING
- triggered when FPS drop triggers auto level capping- data: { level: suggested new auto level capping by fps controller, droppedLevel : level has too many dropped frames and will be restricted }
Hls.Events.ERROR
- Identifier for an error event- data: { type : error type, details : error details, fatal : is error fatal or not, other error specific data }
Hls.Events.DESTROYING
- fired when hls.js instance starts destroying. Different fromMEDIA_DETACHED
as one could want to detach and reattach a video to the instance of hls.js to handle mid-rolls for example- data: { }
Hls.Events.KEY_LOADING
- fired when a decryption key loading starts- data: { frag : fragment object }
Hls.Events.KEY_LOADED
- fired when a decryption key loading is completed- data: { frag : fragment object }
Hls.Events.STREAM_STATE_TRANSITION
- fired upon stream controller state transitionsHls.Events.NON_NATIVE_TEXT_TRACKS_FOUND
- WhenrenderTextTracksNatively
isfalse
, this event will fire when a new captions or subtitle track is found, in the place of adding a TextTrack to the video element.- data: { tracks: Array<{ label, kind, default, subtitleTrack }> }
Hls.Events.CUES_PARSED
- WhenrenderTextTracksNatively
isfalse
, this event will fire when new captions or subtitle cues are parsed.- data: { type, cues, track } }
You can export internal loader definition for your own implementation via static getter Hls.DefaultConfig.loader
.
Example:
import Hls from 'hls.js';
let myHls = new Hls({
pLoader: function (config) {
let loader = new Hls.DefaultConfig.loader(config);
this.abort = () => loader.abort();
this.destroy = () => loader.destroy();
this.load = (context, config, callbacks) => {
let {type, url} = context;
if (type === 'manifest') {
console.log(`Manifest ${url} will be loaded.`);
}
loader.load(context, config, callbacks);
};
}
});
Full list of errors is described below:
Hls.ErrorDetails.MANIFEST_LOAD_ERROR
- raised when manifest loading fails because of a network error- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.MANIFEST_LOAD_ERROR
, fatal :true
, url : manifest URL, response : { code: error code, text: error text }, loader : URL loader }
- data: { type :
Hls.ErrorDetails.MANIFEST_LOAD_TIMEOUT
- raised when manifest loading fails because of a timeout- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.MANIFEST_LOAD_TIMEOUT
, fatal :true
, url : manifest URL, loader : URL loader }
- data: { type :
Hls.ErrorDetails.MANIFEST_PARSING_ERROR
- raised when manifest parsing failed to find proper content- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.MANIFEST_PARSING_ERROR
, fatal :true
, url : manifest URL, reason : parsing error reason }
- data: { type :
Hls.ErrorDetails.LEVEL_EMPTY_ERROR
- raised when loaded level contains no fragments- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.LEVEL_EMPTY_ERROR
, url: playlist URL, reason: error reason, level: index of the bad level }
- data: { type :
Hls.ErrorDetails.LEVEL_LOAD_ERROR
- raised when level loading fails because of a network error- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.LEVEL_LOAD_ERROR
, fatal :true
, url : level URL, response : { code: error code, text: error text }, loader : URL loader }
- data: { type :
Hls.ErrorDetails.LEVEL_LOAD_TIMEOUT
- raised when level loading fails because of a timeout- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.LEVEL_LOAD_TIMEOUT
, fatal :false
, url : level URL, loader : URL loader }
- data: { type :
Hls.ErrorDetails.AUDIO_TRACK_LOAD_ERROR
- raised when audio track loading fails because of a network error- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.AUDIO_TRACK_LOAD_ERROR
, fatal :false
, url : audio URL, response : { code: error code, text: error text }, loader : URL loader }
- data: { type :
Hls.ErrorDetails.AUDIO_TRACK_LOAD_TIMEOUT
- raised when audio track loading fails because of a timeout- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.AUDIO_TRACK_LOAD_TIMEOUT
, fatal :false
, url : audio URL, loader : URL loader }
- data: { type :
Hls.ErrorDetails.FRAG_LOAD_ERROR
- raised when fragment loading fails because of a network error- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.FRAG_LOAD_ERROR
, fatal :true
orfalse
, frag : fragment object, response : { code: error code, text: error text } }
- data: { type :
Hls.ErrorDetails.FRAG_LOAD_TIMEOUT
- raised when fragment loading fails because of a timeout- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.FRAG_LOAD_TIMEOUT
, fatal :true
orfalse
, frag : fragment object }
- data: { type :
Hls.ErrorDetails.KEY_LOAD_ERROR
- raised when decrypt key loading fails because of a network error- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.KEY_LOAD_ERROR
, fatal :false
, frag : fragment object, response : { code: error code, text: error text } }
- data: { type :
Hls.ErrorDetails.KEY_LOAD_TIMEOUT
- raised when decrypt key loading fails because of a timeout- data: { type :
NETWORK_ERROR
, details :Hls.ErrorDetails.KEY_LOAD_TIMEOUT
, fatal :true
, frag : fragment object }
- data: { type :
Hls.ErrorDetails.MANIFEST_INCOMPATIBLE_CODECS_ERROR
- raised when manifest only contains quality level with codecs incompatible with MediaSource Engine.- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.MANIFEST_INCOMPATIBLE_CODECS_ERROR
, fatal :true
, url : manifest URL }
- data: { type :
Hls.ErrorDetails.FRAG_DECRYPT_ERROR
- raised when fragment decryption fails- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.FRAG_DECRYPT_ERROR
, fatal :true
, reason : failure reason }
- data: { type :
Hls.ErrorDetails.FRAG_PARSING_ERROR
- raised when fragment parsing fails- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.FRAG_PARSING_ERROR
, fatal :true
orfalse
, reason : failure reason }
- data: { type :
Hls.ErrorDetails.BUFFER_ADD_CODEC_ERROR
- raised when MediaSource fails to add new sourceBuffer- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.BUFFER_ADD_CODEC_ERROR
, fatal :false
, err : error raised by MediaSource, mimeType: mimeType on which the failure happened }
- data: { type :
Hls.ErrorDetails.BUFFER_APPEND_ERROR
- raised when exception is raised while calling buffer append- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.BUFFER_APPEND_ERROR
, fatal :true
orfalse
, parent : parent stream controller }
- data: { type :
Hls.ErrorDetails.BUFFER_APPENDING_ERROR
- raised when exception is raised during buffer appending- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.BUFFER_APPENDING_ERROR
, fatal :false
}
- data: { type :
Hls.ErrorDetails.BUFFER_STALLED_ERROR
- raised when playback is stuck because buffer is running out of data- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.BUFFER_STALLED_ERROR
, fatal :true
orfalse
, buffer : buffer length (optional) }
- data: { type :
Hls.ErrorDetails.BUFFER_FULL_ERROR
- raised when no data can be appended anymore in media buffer because it is full. this error is recovered by reducing the max buffer length.- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.BUFFER_FULL_ERROR
, fatal :false
}
- data: { type :
Hls.ErrorDetails.BUFFER_SEEK_OVER_HOLE
- raised after hls.js seeks over a buffer hole to unstuck the playback,- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.BUFFER_SEEK_OVER_HOLE
, fatal :false
, hole : hole duration }
- data: { type :
Hls.ErrorDetails.BUFFER_NUDGE_ON_STALL
- raised when playback is stuck although currentTime is in a buffered area- data: { type :
MEDIA_ERROR
, details :Hls.ErrorDetails.BUFFER_NUDGE_ON_STALL
, fatal :true
|false
} - Not fatal for the first few nudges, but if we reach
config.nudgeMaxRetry
attempts and the player is still stalled, thenBUFFER_NUDGE_ON_STALL
is fatal
- data: { type :
Hls.ErrorDetails.REMUX_ALLOC_ERROR
- raised when memory allocation fails during remuxing- data: { type :
MUX_ERROR
, details :Hls.ErrorDetails.REMUX_ALLOC_ERROR
, fatal :false
, bytes : mdat size, reason : failure reason }
- data: { type :
Hls.ErrorDetails.LEVEL_SWITCH_ERROR
- raised when level switching fails- data: { type :
OTHER_ERROR
, details :Hls.ErrorDetails.LEVEL_SWITCH_ERROR
, fatal :false
, level : failed level index, reason : failure reason }
- data: { type :
Hls.ErrorDetails.INTERNAL_EXCEPTION
- raised when an exception occurs in an internal hls.js event handler- data: { type :
OTHER_ERROR
, details :Hls.ErrorDetails.INTERNAL_EXCEPTION
, fatal :true
orfalse
, event : event object or string, err : { message : error message } }
- data: { type :
A Level
object represents a given quality level.
It contains quality level related info, retrieved from manifest, such as:
- level bitrate
- used codecs
- video width/height
- level name
- level URL
See sample Level
object below:
{
url: [ 'http://levelURL.com', 'http://levelURLfailover.com' ],
bitrate: 246440,
name: "240",
codecs: "mp4a.40.5,avc1.42000d",
width: 320,
height: 136,
}
url
is an array that might contains several items if failover/redundant streams are found in the manifest.
A LevelDetails
object contains level details retrieved after level playlist parsing, they are specified below:
- protocol version
- playlist type
- start sequence number
- end sequence number
- level total duration
- level fragment target duration
- array of fragments info
- is this level a live playlist or not?
See sample object below, available after corresponding LEVEL_LOADED
event has been fired:
{
version: 3,
type: 'VOD', // null if EXT-X-PLAYLIST-TYPE not present
startSN: 0,
endSN: 50,
totalduration: 510,
targetduration: 10,
fragments: Array(51),
live: false
}
The Fragment
object contains fragment related info, such as:
- fragment URL
- fragment duration
- fragment sequence number
- fragment start offset
- level identifier
See sample object below:
{
duration: 10,
level: 3,
sn: 35,
start: 30,
url: 'http://fragURL.com'
}