Skip to main content

Initialization Configuration

During initialization, parameters such as autoplay, volume, and muted attributes can be configured. However, it is also possible to modify the volume and muted attributes at a later time, as per requirements.

Autoplay Configuration

The implementation of autoplay attribute can be done in Lura Player using the following configuration.

AttributeTypeDescription
autoplaybooleanAutoplay attribute of the player. Defaults to false
Autoplay Example
m.player.callFunc("setConfig", {
...
controls: {
autoplay: true,
},
...
})

Mute Configuration

The implementation of initially muted attribute can be done in Lura Player using the following configuration.

AttributeTypeDescription
mutedbooleanWhether to start muted when the player autoplays. Defaults to false.
info

Some platforms doesn't support unmuted autoplay. So if autoplay attribute is set to true, muted attribute will be overwritten to true in platforms that doesn't support unmuted autoplay.

Mute Example
m.player.callFunc("setConfig", {
...
controls: {
muted: true,
},
...
})
Combined Example
m.player.callFunc("setConfig", {
...
controls: {
autoplay: true,
muted: true,
},
...
})