Video Js 不在移动浏览器中自动播放

Video Js is not auto playing in the mobile browser

我正在我的网页中尝试基于视频 js 的播放器。 IT 在桌面浏览器中运行完美,移动浏览器无法自动播放 video.I 尝试了所有选项,例如:

   var options = {};
var player = videojs('video-js', options, function onPlayerReady() {
    videojs.log('Your player is ready!');
    // In this context, `this` is the player that was created by Video.js.
    this.play();
    // How about an event listener?
    this.on('ended', function() {
        videojs.log('Awww...over so soon?!');
    });
});

还是没有自动播放视频

请问您有什么解决办法吗?

iOS10 的自动播放和 Android 的 Chrome 的最新版本仅在视频静音时才有效。在每个平台的旧版本上,它根本不起作用。