- 云点播短视频播放器 在组件中使用 wx.createVideoContext 不能操作视频
<cloud-player class="video" appid="{{appid}}" fileid="{{fileid}}" playurl="{{playurl}}" playerid="myVideo" class="video" width="750rpx" height="428rpx"> <view wx:if="{{coverShow}}" class="my_video_cover" catchtap="handleTapPlay"> </view> </cloud-player> Component({ properties: { fileid: String, playurl: String, }, data: { appid: 'xxxxxxxxx', coverShow: true, //是否显示视频遮罩 }, observers: { 'playurl': function(src) { if(src) { // 在自定义组件开发中,需要多传入一个表示组件本身的参数this this.videoContext = wx.createVideoContext('myVideo', this) } } }, methods: { // 点击播放 handleTapPlay(){ console.log(this.videoContext) this.setData({ coverShow: false }) setTimeout(_ => { console.log('调用播放') this.videoContext.play()//无效 }, 200) }, } })
2021-02-03 - 微信小程序直播组件什么时候可以开发长期订阅主播功能?类似看点直播和微信游戏直播的订阅主播功能。
从微信小程序直播组件一出来我们就马上跟进上线了直播功能,公司主播团队也积极拓展这方面的业务。但是最大的问题是每次直播观众都需要从社群和朋友圈重新导入,效率太低了。类似看点直播和微信游戏直播的长期订阅关注和取消订阅主播,开播推送提醒用户的功能什么时候才能更新呢?如果小程序直播组件团队近期不打算做这个功能,我们不得不放弃小程序直播组件,需求其他替换方案,心好累。
2020-07-30