失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > 解决H5项目微信浏览器安卓系统无法自动播放背景音乐的问题

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

时间:2021-11-05 22:15:41

相关推荐

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

背景

制作的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();} */

使用示例

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

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

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

bgm.toggleBGM();

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

如果觉得《解决H5项目微信浏览器安卓系统无法自动播放背景音乐的问题》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。