我用两个示例创建了一个测试页:
iframe嵌入HTML
JavaScript SDK
我尝试将参数“ queue-autoplay-next”设置为false,但不起作用,当第一个视频播放完后,自动启动第二个。
此处的文档:https://developer.dailymotion.com/player
我的代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<iframe frameborder="0" width="480" height="270"
src="//www.dailymotion.com/embed/video/x7024it?autoplay=true&ui-highlight=c90c0f&mute=0&queue-autoplay-next=false&sharing-enable=false&ui-logo=false&ui-start-screen-info=false&queue-enable=true"
allowfullscreen allow="autoplay">
</iframe>
<div id="player"></div>
<script src="https://api.dmcdn.net/all.js"></script>
<script>
var player = DM.player(document.getElementById("player"), {
video: "x7024it",
width: "100%",
height: "100%",
params: {
autoplay: true,
mute: false,
"queue-autoplay-next": false,
"ui-highlight": "c90c0f",
"sharing-enable": false,
"ui-logo": false,
"ui-start-screen-info": false,
"queue-enable": true
}
});
</script>
</body>
</html>
答案 0 :(得分:4)
感谢您的反馈,这确实是播放器中的错误。我们将尽快修复。
与此同时,您可以使用"queue-autoplay-next": 0
作为解决方法。
给您带来的不便,我们深表歉意。