栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

解决H5项目微信浏览器安卓系统无法自动播放背景音乐的问题

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

解决H5项目微信浏览器安卓系统无法自动播放背景音乐的问题

背景

制作的H5项目,使用vedio标签,利用wx.getNetworkType来自动播放背景音乐。
但是安卓的vedio自动播放被微信浏览器限制了。

解决方案

采用web vedio api
细节解释:
web vedio api MDN

伸手
function BGMAutoPlayMgr(url) {
    this.audioContext = new (window.AudioContext || window.webkitAudioContext || window.mozAudioContext)();
    this.sourceNode = null;
    this.buffer = null;
    this.isPlayingBGM = false;
    this.toggleBGM = function () {
        if (typeof this.sourceNode == 'object') {
            if (this.isPlayingBGM) {
                this.sourceNode.stop();
                this.isPlayingBGM = false;
            } else this._playSourceNode();
        }
    }
    this._playSourceNode = function () {
        const audioContext = this.audioContext;
        audioContext.resume();
        const _sourceNode = audioContext.createBufferSource();
        _sourceNode.buffer = this.buffer;
        _sourceNode.loop = true;
        _sourceNode.connect(audioContext.destination);
        _sourceNode.start(0);
        this.sourceNode = _sourceNode;
        this.isPlayingBGM = true;
    }
    let loadAndAutoPlay = (audioUrl) => {
        const audioContext = this.audioContext;
        const xhr = new XMLHttpRequest();
        xhr.open('GET', audioUrl, true);
        xhr.responseType = 'arraybuffer';
        xhr.onreadystatechange = () => {
            if (xhr.status < 400 && xhr.status >= 200 && xhr.readyState === 4) {
                audioContext.decodeAudioData(xhr.response, buffer => {
                    this.buffer = buffer;
                    WeixinJSBridge.invoke("getNetworkType", {}, () => this._playSourceNode());
                });
            }
        }
        xhr.send();
    }
    loadAndAutoPlay(url);
    loadAndAutoPlay = null;
}

使用示例

调用:实例化类,并传入背景音乐的网络url

const bgm = new BGMAutoPlayMgr('http://192.168.1.1:8080/bgm.mp3');

开关背景音乐:调用实例的toggleBGM方法。注意需要在已经自动播放后进行调用

bgm.toggleBGM();

本文作者北京亿众互动:ccbbs

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/677661.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号