现在需求背景音乐和按键音同时存在,但createInnerAudioContext播放第二个时第一个会断掉
小程序中使用是:
const innerAudioContext1 = wx.createInnerAudioContext()
innerAudioContext1.src ='audio/piano/c4.mp3'
const innerAudioContext2 = wx.createInnerAudioContext()
innerAudioContext2.src ='audio/piano/e4.wav'
const innerAudioContext3 = wx.createInnerAudioContext()
innerAudioContext3.src ='audio/piano/g4.wav'
innerAudioContext1.play()
innerAudioContext2.play()
innerAudioContext3.play()
但uniapp中在app中播放第二个第一个就会断掉
参考:https://developers.weixin.qq.com/community/develop/doc/000e0c67260268ab8668d9afd5b400
或者说有其他方法可实现两个音乐同时播放吗
2 个回复
2***@qq.com
h5可以同时播放2个,但是app不能同时播放两个,播放其中一个,另外一个就会停止。有解决办法吗
白月
顶一下,还是一样的