Playlist in the Up Next queue
The Up Next queue is displayed at the right of the player, and list all the upcoming videos that will be played at the end of the current video watched. By default, the Up next queue is automatically populated by the most relevant and trending videos from our partners channels.
By using the Playlist up next queue, you can define a specific playlist as a source to populate the queue. It would allow you to share a specific video, and specify which videos will be played next through a playlist you defined.
Playlist up next queue using iframe
<iframe frameborder="0" width="480" height="270" src="https://www.dailymotion.com/embed/video/x3rdtfy?playlist=x5zhzj" allowfullscreen allow="autoplay"></iframe>
Playlist up next queue using SDK JavaScript
<script src="https://api.dmcdn.net/all.js"></script>
<div id="videoPlayer"></div>
<script>
var player = DM.player("videoPlayer", {
video : "x3rdtfy",
playlist: "x5zhzj",
width: "480",
height: "270",
});
</script>
Playlist up next queue using CPE
<pre> <code class="html"><div class="dailymotion-cpe" video-id="x3rdtfy" playlist-id="x5zhzj"></div>
Playlist up next queue using AMP
<amp-dailymotion data-videoid="x3rdtfy" data-param-playlist="x5zhzj" layout="responsive" data-ui-highlight="FF4081" width="480" height="270"></amp-dailymotion>