小程序的音频播放
2019-01-13 本文已影响8人
王炳祺
微信小程序的音频播放主要分1.背景音频播放与2.普通音频播放两种。以下是wepy项目中的具体写法
1背景音频播放
1.创建背景音频
data = {
backgroundAudioManager: null
}
this.backgroundAudioManager = wx.getBackgroundAudioManager();
2.播放背景音乐
this.backgroundAudioManager.title = '背景音乐',
this.backgroundAudioManager.src = 'https://lgyq.oss-cn-hongkong.aliyuncs.com/ng/%E5%A3%B0%E9%9F%B3/%E5%B0%8F%E7%80%AC%E6%9D%91%E6%99%B6%20-%20petrarca.mp3'
3.暂停背景音乐
wx.stopBackgroundAudio()
2普通音频播放
1.创建背景音频
data = {
innerAudioContext: null,
}
this.backgroundAudioManager = wx.getBackgroundAudioManager();
2.播放背景音乐
this.innerAudioContext.autoplay = true
this.innerAudioContext.src = 'https://lgyq.oss-cn-hongkong.aliyuncs.com/ng/%E5%A3%B0%E9%9F%B3/1.mp3'
this.innerAudioContext.onPlay(() => {
//这里可以写音乐开始播放后的回掉函数
})
this.innerAudioContext.onError((res) => {
// 音频出现播放错误时候的回调函数
})
3.最后别忘记在你离开页面的时候销毁了你不再使用的音频对象
onUnload() {
this.innerAudioContext.destroy();
}
以上是满足最长使用的基本的功能。更多功能可以参考更为详细的小程序音频开发文档哦。https://developers.weixin.qq.com/miniprogram/dev/api/InnerAudioContext.html