我正在网页上尝试基于视频js的播放器。 IT在桌面浏览器和移动浏览器中的工作非常完美,不能自动播放视频。我尝试了所有选项,如:
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?!');
});
});
仍然没有自动播放视频。
我知道你有什么解决方案吗?
答案 0 :(得分:0)
iOS 10和最新版Chrome for Android上的自动播放仅在视频静音时有效。在每个平台的旧版本上,它根本不起作用。