gpt4 book ai didi

javascript - youtube 嵌入视频自动播放不适用于谷歌浏览器中未静音的声音,而它适用于 firefox

转载 作者:行者123 更新时间:2023-12-05 05:13:50 25 4
gpt4 key购买 nike

我尝试从 3 天开始在谷歌浏览器中使用“未静音”自动播放 youtube 嵌入式视频,但它不起作用。虽然具有相同代码的相同视频可以在 mozilla firefox 中运行。我尝试了不同的代码,但直到现在都没有成功。

这是代码。

<head>
<style>
body{
margin-left: 0px;
}
</style>
</head>
<script src="js/jquery-3.1.1.min.js"></script>
<div id="YouTubeVideoPlayer"></div>

<script async src="https://www.youtube.com/iframe_api"></script>
<script>
function onYouTubeIframeAPIReady() {
var player;
player = new YT.Player('YouTubeVideoPlayer', {
videoId: 'M7lc1UVf-VE', // YouTube Video ID
width: 560, // Player width (in px)
height: 316,
start:0, // Player height (in px)
playerVars: {
autoplay: 1, // Auto-play the video on load
controls: 1, // Show pause/play buttons in player
showinfo: 0, // Hide the video title
modestbranding: 1, // Hide the Youtube Logo
loop: 1, // Run the video in a loop
fs: 0, // Hide the full screen button
cc_load_policy: 0, // Hide closed captions
iv_load_policy: 3, // Hide the Video Annotations
autohide: 0 // Hide video controls when playing
},
events: {
onReady: function(e) {
e.target.setVolume(40);
}
}
});
}

$("body").animate({ margin: "400px 0px 0px 0px" }, 18000 );

</script>

最佳答案

您需要将静音设置为 0,并且在视频开始后您需要在 0:01 秒触发以将音量调回 40。

关于javascript - youtube 嵌入视频自动播放不适用于谷歌浏览器中未静音的声音,而它适用于 firefox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53138981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com