
PLAYLIST & CONTROLS
Hi,
I need to have this setting on my player:
2 video in playlist.
first video with :autostart: false,
controls:false,
second video with: autostart: true,
controls:true,
is it possible?
Thank a lot,
Vito.
Hi,
I need to have this setting on my player:
2 video in playlist.
first video with :autostart: false,
controls:false,
second video with: autostart: true,
controls:true,
is it possible?
Thank a lot,
Vito.
Hi Vito,
When two videos are in a playlist and autostart is not set to true, the second item, and any subsequent items, in the playlist will automatically begin playing when the previous item completes. There is no configuration necessary for that functionality.
As for having the controls not appear on the first video, but appear on the second – there is no built-in functionality to make this happen, but you should be able to accomplish it using the .on(‘playlistItem’) (see documentation here) API event with the .setControls() (see documentation here) method to hide and show the controls.
Thank you.