LivePlayerContext.play

解释:播放

方法参数

Object object

object参数说明 :

属性名类型默认值必填说明
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例

在开发者工具中预览效果

扫码体验

LivePlayerContext.play - 图1请使用百度APP扫码

图片示例

LivePlayerContext.play - 图2

LivePlayerContext.play - 图3

LivePlayerContext.play - 图4

代码示例

  • 在 swan 文件中
  1. <view class="live-play">
  2. <live-player id="myLive" src="{{src}}" autoplay="{{autoplay}}"></live-player>
  3. <button type="primary" bind:tap="livePlay">开始播放 play</button>
  4. </view>
  • 在 js 文件中
  1. Page({
  2. data: {
  3. cur: 0,
  4. autoplay: false,
  5. src: 'https://vd3.bdstatic.com/mda-ia8e6q3g23py8qdh/hd/mda-ia8e6q3g23py8qdh.mp4?playlist=%5B%22hd%22%5D&auth_key=1521549485-0-0-d5d042ba3555b2d23909d16a82916ebc&bcevod_channel=searchbox_feed&pd=share'
  6. },
  7. onShow(){
  8. console.log('目前此组件在真机双端不能播放,请在开发者工具中查看完整效果');
  9. },
  10. onReady(e) {
  11. const livePlayerContext = swan.createLivePlayerContext('myLive');
  12. this.livePlayerContext = livePlayerContext;
  13. },
  14. livePlay(e) {
  15. this.livePlayerContext.play();
  16. }
  17. });