Configuration parameters could be provided upon instantiation of the player instance.
var config = {
// Configuration here
};
var player = playkit.core.loadPlayer(config);
{
logLevel: string,
type: string,
playback: PKPlaybackConfigObject,
sources: PKSourcesConfigObject,
metadata: PKMetadataConfigObject,
plugins: PKPluginsConfigObject
}
var config = {
logLevel: "ERROR",
type: "Unknown",
sources: {
hls: [],
dash: [],
progressive: []
},
plugins: {},
metadata: {
description: "",
poster: ""
},
playback: {
audioLanguage: "",
textLanguage: "",
useNativeTextTrack: false,
volume: 1,
startTime: 0,
playsinline: true,
preload: "none",
autoplay: false,
allowMutedAutoPlay: true,
muted: false,
options: {
html5: {
hls: {},
dash: {}
}
},
preferNative: {
hls: false,
dash: false
},
streamPriority: [
{
engine: "html5",
format: "hls"
},
{
engine: "html5",
format: "dash"
},
{
engine: "html5",
format: "progressive"
}
]
}
};
Possible values:
"DEBUG", "INFO", "TIME", "WARN", "ERROR", "OFF"
Possible values:
"Vod", "Live", "Image", "Audio", "Unknown"
{ dash: Array<PKMediaSourceObject> hls: Array<PKMediaSourceObject> progressive: Array<PKMediaSourceObject> }{ mimetype: string, url: string, id: string, // optional bandwidth: number, // optional width: number, // optional height: number, // optional drmData: Array<PKDrmDataObject> // optional }{ licenseUrl: string, scheme: string, certificate: string // optional }{ hls: [], dash: [], progressive: [] }The optional sources for playback should map the media source extension type to its array of sources.
var config = { sources: { hls: [ { mimetype: "application/x-mpegurl", url: "https://wowzaec2demo.streamlock.net/vod-multitrack/_definst_/smil:ElephantsDream/ElephantsDream.smil/playlist.m3u8" } ], dash: [ { mimetype: "application/dash+xml", url: "https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd" } ], progressive: [ { mimetype: "video/mp4", url: "https://www.w3schools.com/html/mov_bbb.mp4" } ] } };
{ [plugin: string]: Object }
This should map the plugin to its config object.
var config = { plugins: { myAwesomePlugin1: {}, myAwesomePlugin2: {} } };
{ poster: string, description: string }{ poster: "", description: "" }The poster field refers to the poster URL, which the player displays before playback begins.
var config = { metadata: { description: "MPEG Dash with MultiAudio New Transcoding", poster: "http://cdntesting.qa.mkaltura.com/p/1091/sp/109100/thumbnail/entry_id/0_wifqaipd/version/100042" } };Note: This object can include additional custom fields, which you can implement depending on your player needs.
{ audioLanguage: string, textLanguage: string, useNativeTextTrack: boolean, volume: number, startTime: number, playsinline: boolean, preload: string, autoplay: boolean, allowMutedAutoPlay: boolean, muted: boolean, options: PKPlaybackOptionsObject, streamPriority: Array<PKStreamPriorityObject>, preferNative: PKPreferNativeConfigObject }{ audioLanguage: "", textLanguage: "", useNativeTextTrack: false, volume: 1, startTime: 0, playsinline: true, preload: "none", autoplay: false, allowMutedAutoPlay: true, muted: false, options: { html5: { hls: {}, dash: {} } }, preferNative: { hls: false, dash: false }, streamPriority: [ { engine: "html5", format: "hls" }, { engine: "html5", format: "dash" }, { engine: "html5", format: "progressive" } ] }If an audio track with the defined language exists, this audio track will be selected as the initial audio track.
var config = { playback: { audioLanguage: "eng" // Start playback with english audio } };If captions for the defined language are available, this text track will be selected as the initial text track.
var config = { playback: { textLanguage: "heb" // Start playback with hebrew captions } };If the value
"auto"
is set, i.e:var config = { playback: { textLanguage: "auto" } };The player will choose the default captions language using the following logic:
- Locale language - If there are captions in the user's system language then this language will be selected.
- Manifest default language - If a default language is specified in the manifest file then this language will be selected.
- First language in manifest - The first language specified in the manifest file will be selected.
- If none of the above conditions have taken place, do not display captions.
If set to True, the native browser captions will be displayed.
The value must be in the range of 0-1.
var config = { playback: { volume: 0.5 } };Description: Description: A Boolean attribute that indicates whether the video should be played "inline", that is, within the element's playback area.
This is especially relevant when playing videos on iPhone devices, where - if the value is set to false - the video will be played using the AV Player (iOS native video player).
Possible values:
"none"
: indicates that the video should not be preloaded."auto"
: indicates that the whole video file could be downloaded, even if the user is not expected to use it.for
autoplay
&allowMutedAutoPlay
options read here.This is a Boolean attribute that indicates the default setting of the audio contained in the video. If set, the audio will be initially silenced. The attribute's default value is false, which means that the audio will be played automatically when the video is played.
{ html5: { hls: Object, dash: Object } }{ html5: { hls: {}, dash: {} } }
- For
hls
configuration, see the hls.js documentation.- For
dash
configuration, see the shaka-player documentation.{ hls: boolean, dash: boolean }{ hls: false, dash: false }Description: Indicates whether to prefer native browser playback (if supported) with media source extensions.
If one of the values is set to True and the player chooses to play the truthly media source extension, the player will try to play it natively if supported by the browser.
Lets assume the following configuration:
var config = { playback: { preferNative: { hls: true } } };If the player is running on a Safari browser, the player will use the native hls playback managed by the Safari browser. However, if running on a browser in which hls playback is not supported natively, for example, Chrome, the player will play hls using the
hls.js
library.{ engine: string, format: string }[ { engine: "html5", format: "hls" }, { engine: "html5", format: "dash" }, { engine: "html5", format: "progressive" } ]As soon as the player receives the sources, it will review the configuration array and try to play the source with the matched stream format according to the matched engine. For example, in the priority configuration above, the player will try to play the hls stream using an html5 engine first. If an hls stream isn't received, the player will continue to play the dash stream using an html5 engine. If a dash stream isn't received, the player will then will continue to play the progressive stream using an html5 engine.
Now that we've learned about the different options available in the player configuration, let's see how does the source selection logic works.