
Continuous play of multiple videos
Hello,
I been at it all day with no luck, I have 2 videos, videoA.mp4 and an rtmp stream, I wan to play videoA.mp4 before the rtmp videoB, but for some reason I cant manage to get it to work, this code keeps repeating videoA.mp4…
Help! =(
jwplayer('playerid').setup({
playlist: [{
image: "",
sources: [{
file: "/videoA.mp4"
},{
file: "rtmp://videoB"
}]
}],
width: '100%',
aspectratio: '16:9',
controls: 'false',
mute: 'true',
autostart: 'true',
autoplay: true,
repeat: 'list'
});