pc推流,早就支持了啊
小程序直播以后会支持微信PC端推流直播吗?会支持发红包吗?你好,小程序直播以后会支持微信PC端推流直播吗?会支持发红包吗?作为商家,以后是选择小程序直播还是转向视频号直播?
2021-02-22[图片] 同样,无效;不能操作播放及暂停
云点播短视频播放器 在组件中使用 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-22