当前位置:   article > 正文

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

bgmautoplaymgr

背景

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

解决方案

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

伸手

/**
 * @author ccbbs
 * @file 解决安卓webview自动播放背景音乐的问题
 */
function BGMAutoPlayMgr/* solveAndroidBGMAutoplay */(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;
}
/* 
使用示例
const bgm = new BGMAutoPlayMgr('http://192.168.1.1:8080/bgm.mp3');
function toggleBGM() {
    bgm.toggleBGM();
} 
*/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53

使用示例

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

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

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

bgm.toggleBGM();
  • 1

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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/306465
推荐阅读
相关标签
  

闽ICP备14008679号