小程序音频播放


createInnerAudioContext

Page({
  onLoad: function () {
    // 音频播放
    const innerAudioContext = wx.createInnerAudioContext()
    innerAudioContext.autoplay = true
    //innerAudioContext.src = 'http://ws.stream.qqmusic.qq.com/M500001VfvsJ21xFqb.mp3?guid=ffffffff82def4af4b12b3cd9337d5e7&uin=346897220&vkey=6292F51E1E384E061FF02C31F716658E5C81F5594D561F2E88B854E81CAAB7806D5E4F103E55D33C16F3FAC506D1AB172DE8600B37E43FAD&fromtag=46'
    // innerAudioContext.src = './source/夜场.mp3'
    // innerAudioContext.src = './source/dj.wav'
    innerAudioContext.src = 'https://cdn.caomall.net/15290437711272352156.mp3'

    innerAudioContext.onPlay(() => {
        console.log('开始播放')
    })

    innerAudioContext.onError((res) => {
        console.log(res.errMsg)
        console.log(res.errCode)
    })
  }
})

支持在线播放,支持mp3和wav格式。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM