我正在使用Flowplayer v7.2.7版本
我正在尝试设置自动播放
flowplayer.conf.ratio = 5/8.9;
flowplayer.conf.adaptiveRatio = true;
flowplayer.conf.preload = "none";
flowplayer.conf.fullscreen = true;
flowplayer.conf.native_fullscreen = true;
$(function () { // ensure DOM is ready
// this will install flowplayer into an element with id="player"
$("#player").flowplayer({
// one video: a one-member playlist
autoplay: true,
playlist: [
// a list of type-url mappings in picking order
[
{ webm: "/<?php echo basename($video['Video'], ".mp4"); ?>.webm" },
{ mp4: "/<?php echo $video['url']; ?>" }
]
]
});
});
我的Chrome版本是75.0.3770.142。在我的浏览器中,它几乎可以正常工作。但这在其他浏览器中无法正常工作
我的firefox版本是68.0.2。此代码有时有效。有时不起作用
在我的移动浏览器(Chrome和Firefox)中均无法使用。
请,指导我正确的方法。我希望自动播放功能在所有台式机和移动版浏览器中都能正常工作。
预先感谢
对不起我的英语不好