美文网首页
视频自动播放失败

视频自动播放失败

作者: 秀萝卜 | 来源:发表于2022-03-31 14:12 被阅读0次

    问题描述

    播放器设置了autoplay为true,但是没有自动播放

                  this.player = new Aliplayer({
                        id: "J_prismPlayer",
                        height: "100%",
                        videoWidth: "100%",
                        autoplay: true,
                        source: videoUrl, // 视频地址
                        cover: this.coverImg || '', // 图片
                        format: "m3u8", // 使用m3u8加密播放-进行播放
                        progressMarkers: [], // 进度打点
                    },
                    function (player) {});
    

    原因

    浏览器做了限制,禁止在没有任何交互的情况下,播放带声音的视频。
    也就是说,一个页面没有任何交互(如点击操作),就不能够播放有声音的视频。
    除非这个视频是静音的。

    原文链接
    参考资料:
    https://blog.csdn.net/zhaowei121/article/details/86677766

    相关文章

      网友评论

          本文标题:视频自动播放失败

          本文链接:https://www.haomeiwen.com/subject/wjcnjrtx.html