JSP 如何停止自动播放下一个视频dailymotion?

eit6fx6z  于 2022-12-16  发布在  其他
关注(0)|答案(1)|浏览(147)

我已经创建了一个测试页,有两个例子:

  1. Iframe嵌入HTML
  2. JavaScript软件开发工具包
    我尝试将参数“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>
ar5n3qh5

ar5n3qh51#

谢谢你的反馈,这确实是播放器的一个bug,我们会尽快修复的。
同时,您可以使用"queue-autoplay-next": 0作为解决方法。
给您带来不便,我们深表歉意。

相关问题