Optional
audioAudio codec priority.
If more than one audio codec is available this order will be respected while finding a codec which is supported by the current browser.
If there is a codec which is not in this priority list, it will be tried only if none of this list are available / supported.
Default priority order is ['ec-4', 'ac-4', 'ec-3', 'mp4a.a6', 'ac-3', 'mp4a.a5', 'mp4a.40']
Optional
audioDefines one or more audio languages which should be used in the specified order on start up.
Optional
autoplayWhether the player starts playback automatically after loading the source or not?
Default value is false
.
Also note that unmuted autoplay is blocked on several browsers.
Optional
isDetermines if the subtitle should be selected by the player per default and kept in sync with the selected audio language.
The subtitle will not appear in list and can't be deactivated or activated through the API.
Per default subtitle tracks with forced=true
will be selected.
In case of DASH these are subtitles with the role forced_subtitle and in case of HLS subtitles with the attribute FORCED=YES
.
the subtitle track.
true
when successful, false
otherwise.
Optional
mutedWhether the audio is muted on startup or not?
Default value is false
.
Optional
playsWhether to add the playsinline attribute to the video element or not.
This stops videos immediately going fullscreen after starting playback on iOS for example.
Default is true.
Optional
preferredAn array of objects to specify the player and streaming technology order to use. If the first is supported, this technologies are used. If not, the second is tried etc. If none of the specified combinations are supported, then a PLAYER_SOURCE_NO_SUPPORTED_TECHNOLOGY will be thrown.
Player technologies:
html5
refers to the MediaSource Extension (MSE) based JavaScript playernative
refers to the browser’s native capabilities are being used, e.g. playing back HLS in Safari on iOSCurrently supported combinations:
{ player: 'html5', streaming: 'dash'}
{ player: 'html5', streaming: 'hls'}
{ player: 'html5', streaming: 'smooth'}
{ player: 'native', streaming: 'hls'}
{ player: 'native', streaming: 'progressive'}
Example:
preferredTech : [{
player: 'html5',
streaming: 'dash'
}, {
player: 'native',
streaming: 'hls'
}]
Optional
seekingWhether to allow seeking or not.
Default is true.
Optional
subtitleDefines one or more subtitle languages which should be used in the specified order on start up.
Optional
timeEnables time shift / DVR for live streams.
Default is true (enabled). If time shift is disabled (set to false), the timeline (scrub bar) will not be shown any more.
Optional
videoVideo codec priority.
If more than one video codec is available this order will be respected while finding a codec which is supported by the current browser. If there is a codec which is not in this priority list, it will be tried only if none of this list are available / supported.
Default priority order is ['dvhe', 'dvh1', 'av1', 'hevc', 'hev', 'hvc', 'vp9', 'avc']
Optional
volumeDefines the volume level of the player when started for the first time.
Default value is 100.
MKPlayer playback configuration interface.