鸿蒙 xcomponent 播放视频无画面?

293 阅读1分钟

使用的官网例子:developer.huawei.com/consumer/cn… 播放网络链接mp4格式的视频 时长大概在一个小时左右,播放只有声音,没有画面,而且很卡。

XComponent({
  id: 'xcomponent',
  type: XComponentType.SURFACE,
  controller: this.xComponentController
})
  .onLoad(() => {
    this.xComponentController.setXComponentSurfaceSize({ surfaceWidth: 1920, surfaceHeight: 1080 })
    this.surfaceId = this.xComponentController.getXComponentSurfaceId()
    this.avPlayerDemo.avPlayerLiveDemo(this.surfaceId)
  })
  .width('100%')
  .height('100%')