微信小程序背景音频播放分享功能

Posted 清风白水

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序背景音频播放分享功能相关的知识,希望对你有一定的参考价值。

如果正常背景音频播放的话,只能跳转到自己对应的微信小程序,无法分享朋友圈,我们需要设置分享朋友圈,需要调用一个API

音频背景播放

注意:背景播放在锁屏后播放只支持ios端,安卓端虽然可以播放,但是锁屏不显示,IOS锁屏会显示

  • wxml
<audio poster="{{poster}}" name="{{name}}" author="{{author}}" src="{{src}}" id="myAudio" controls loop></audio>
<button type="primary" bindtap="audioPlay">播放</button>
<button type="primary" bindtap="audioPause">暂停</button>
<button type="primary" bindtap="audio14">设置当前播放时间为14秒</button>
<button type="primary" bindtap="audioStart">回到开头</button>
  • wxjs
Page({
  onReady: function (e) {
    // 使用 wx.createAudioContext 获取 audio 上下文 context
    this.audioCtx = wx.createAudioContext(\'myAudio\')
  },
  data: {
    poster: \'http://y.gtimg.cn/music/photo_new/T002R300x300M000003rsKF44GyaSk.jpg?max_age=2592000\',
    name: \'此时此刻\',
    author: \'许巍\',
    src: \'http://ws.stream.qqmusic.qq.com/M500001VfvsJ21xFqb.mp3?guid=ffffffff82def4af4b12b3cd9337d5e7&uin=346897220&vkey=6292F51E1E384E06DCBDC9AB7C49FD713D632D313AC4858BACB8DDD29067D3C601481D36E62053BF8DFEAF74C0A5CCFADD6471160CAF3E6A&fromtag=46\',
  },
  audioPlay: function () {
    this.audioCtx.play()
  },
  audioPause: function () {
    this.audioCtx.pause()
  },
  audio14: function () {
    this.audioCtx.seek(14)
  },
  audioStart: function () {
    this.audioCtx.seek(0)
  }
})
const backgroundAudioManager = wx.getBackgroundAudioManager()

backgroundAudioManager.title = \'此时此刻\'
backgroundAudioManager.epname = \'此时此刻\'
backgroundAudioManager.singer = \'许巍\'
backgroundAudioManager.coverImgUrl = \'http://y.gtimg.cn/music/photo_new/T002R300x300M000003rsKF44GyaSk.jpg?max_age=2592000\'
backgroundAudioManager.src = \'http://ws.stream.qqmusic.qq.com/M500001VfvsJ21xFqb.mp3?guid=ffffffff82def4af4b12b3cd9337d5e7&uin=346897220&vkey=6292F51E1E384E061FF02C31F716658E5C81F5594D561F2E88B854E81CAAB7806D5E4F103E55D33C16F3FAC506D1AB172DE8600B37E43FAD&fromtag=46\' // 设置了 src 之后会自动播放

背景音频播放分享功能

backgroundAudioManager.webUrl="www.baidu.com"
只需要加上这个 我们就可以实现背景音频播放分享到朋友圈
webUrl :页面链接,原生音频播放器中的分享功能,分享出去的卡片简介,也将使用该值。

以上是关于微信小程序背景音频播放分享功能的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序播放背景音乐

微信小程序音频播放之音乐播放器

录音上传播放音频微信小程序实践

微信小程序后台没有背景音乐功能怎么办

微信小程序添加闹钟代码

微信小程序代码片段分享