• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

微信小程序(9)--音频及视频弹幕

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

记录微信小程序音频及视频弹幕播放效果。

1.audio

<!-- audio.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>
// audio.js
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() },
//设置当前播放时间在14秒 audio14: function () {
this.audioCtx.seek(14) },
//回到开头 audioStart: function () {
this.audioCtx.seek(0) } })

2.video

 默认宽度300px、高度225px

<view class="section tc">
  <video id="myVideo" src="http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400" danmu-list="{{danmuList}}" enable-danmu danmu-btn controls></video>
  <view class="btn-area">
    <input bindblur="bindInputBlur" placeholder="输入文字"/>
    <button bindtap="bindSendDanmu">发送弹幕</button>
  </view>
</view>
function getRandomColor () {
  let rgb = []
  for (let i = 0 ; i < 3; ++i){
    let color = Math.floor(Math.random() * 256).toString(16)
// 0.0 ~ 1.0 之间的一个伪随机数。Math.random()。floor() 方法执行的是向下取整计算,它返回的是小于或等于函数参数,并且与之最接近的整数。toString() 方法可把一个逻辑值转换为字符串,并返回结果。 color
= color.length == 1 ? \'0\' + color : color rgb.push(color) }
// join() 方法用于把数组中的所有元素放入一个字符串。
return \'#\' + rgb.join(\'\') } Page({ onReady: function (res) { this.videoContext = wx.createVideoContext(\'myVideo\') }, inputValue: \'\', data: { src: \'\', danmuList: [ { text: \'第 1s 出现的弹幕\', color: \'#ff0000\', time: 1 }, { text: \'第 3s 出现的弹幕\', color: \'#ff00ff\', time: 3 }] }, bindInputBlur: function(e) { this.inputValue = e.detail.value },
//发送弹幕文字 bindSendDanmu: function () {
this.videoContext.sendDanmu({ text: this.inputValue, color: getRandomColor() }) } })

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
微信小程序中使用音频组件以及wx:if和hidden的区别发布时间:2022-07-18
下一篇:
微信小程序字体设置发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap