HarmonyOS 鸿蒙Next中播控中心的时间比AVPlayer获取到的时间要少1s

发布于 1周前 作者 zlyuanteng 来自 鸿蒙OS

HarmonyOS 鸿蒙Next中播控中心的时间比AVPlayer获取到的时间要少1s AVPlayer播放视频,播控中心显示的时间要少1秒

3 回复

方便提供示例demo,或者录个视频展示下问题吗?

这边设置视频界面时长的的数据来源和设置播控中心setAVMetadata时的时长数据来源是否一致,

我这边有些代码片段,可以参考一下,这里视频界面时长的数据来源和播控中心时长数据来源都是用的avPlayer.duration;

case 'prepared': // prepare调用成功后上报该状态机
  console.info('AVPlayerDemo AVPlayer state prepared called.');
  this.flag = true;
  this.durationTime = Math.floor(avPlayer.duration / 1000);
  this.durationStringTime = this.secondToTime(this.durationTime);
  // avPlayer.loop = true;
  avPlayer.setSpeed(media.PlaybackSpeed.SPEED_FORWARD_1_00_X)
  avPlayer.seek(1, media.SeekMode.SEEK_PREV_SYNC)
  await this.startAVSession();
  break;

async startAVSession() {
  if (!this.currentAVSession) {
    console.error('AVPlayerDemo currentAVSession is undefined.')
    return;
  }
  let metadata: avSession.AVMetadata = this.generateAVMetadata();
  await this.currentAVSession.setAVMetadata(metadata).then(() => {
    console.info(`AVPlayerDemo SetAVMetadata successfully`);
  }).catch((err: BusinessError) => {
    console.error(`AVPlayerDemo SetAVMetadata BusinessError: code: ${err.code}, message: ${err.message}`);
  });
  this.playbackState.state = avSession.PlaybackState.PLAYBACK_STATE_PREPARE;
  this.playbackState.duration = this.avPlayer?.duration;
  this.currentAVSession.setAVPlaybackState(this.playbackState);
  // 通过按钮申请长时任务
  this.startContinuousTask();
  this.currentAVSession.getController().then((avcontroller: avSession.AVSessionController) => {
    this.avsessionController = avcontroller;
    console.info(`AVPlayerDemo GetController : SUCCESS : sessionid : ${avcontroller.sessionId}`);
  }).catch((err: BusinessError) => {
    console.error(`AVPlayerDemo GetController BusinessError: code: ${err.code}, message: ${err.message}`);
  });
  await this.currentAVSession.activate().then(() => {
    console.info(`AVPlayerDemo Activate : SUCCESS `);
  }).catch((err: BusinessError) => {
    console.error(`AVPlayerDemo Activate BusinessError: code: ${err.code}, message: ${err.message}`);
  });
}

private generateAVMetadata() {
  let previousIndex = this.addStepIndex(-1);
  let nextIndex = this.addStepIndex(1);
  let metadata: avSession.AVMetadata = {
    assetId: `${this.sourceFiles[this.currentIndex].fd}`, // 必须,媒体ID。歌曲的唯一标识,由应用自定义。
    title: `${this.sourceFiles[this.currentIndex].fd}`, // 标题
    artist: `艺术家${this.currentIndex}`, // 艺术家
    author: `专辑作者${this.currentIndex}`, // 专辑作者
    // avQueueId: "", // 歌单(歌曲列表)唯一标识Id
    // avQueueImage: "", // 歌单(歌曲列表)封面图,图片的像素数据或者图片路径地址(本地路径或网络路径)
    album: `专辑名称${this.currentIndex}`, // 专辑名称
    writer: `词作者${this.currentIndex}`, // 词作者
    composer: `作曲者${this.currentIndex}`, // 作曲者
    duration: this.avPlayer?.duration, // 媒体时长,单位毫秒(ms)
    mediaImage: this.curPixelMap, // 图片的像素数据或者图片路径地址(本地路径或网络路径)
    publishDate: new Date(), // 发行日期
    subtitle: `子标题${this.currentIndex}`, // 子标题
    description: `媒体描述${this.currentIndex}`, // 媒体描述
    // lyric: "https://www.example.com/example.lrc", // 歌词文件路径地址(本地路径或网络路径),当前仅支持本地文件
    previousAssetId: `${this.sourceFiles[previousIndex].fd}`, // 上一首媒体ID
    nextAssetId: `${this.sourceFiles[nextIndex].fd}`, // 下一首媒体ID
  };
  return metadata;
}

更多关于HarmonyOS 鸿蒙Next中播控中心的时间比AVPlayer获取到的时间要少1s的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


在HarmonyOS鸿蒙Next中,播控中心的时间与AVPlayer获取到的时间存在1秒差异,可能是由于两者使用了不同的时间同步机制或时间戳处理方式。播控中心可能采用了更高效的时间管理策略,而AVPlayer则可能在解码或缓冲过程中引入了额外的时间延迟。这种差异通常不会影响整体播放体验,但在需要精确时间同步的场景下,可能需要通过调整播放器的时间处理逻辑来消除差异。

在HarmonyOS鸿蒙Next中,播控中心与AVPlayer获取的时间存在1秒差异,可能是由于两者时间同步机制不同或时间戳处理方式不同所致。建议检查播控中心和AVPlayer的时间同步逻辑,确保两者使用统一的时间基准。此外,查看是否有时间校正或延迟补偿机制,确保时间一致性。如果问题持续,建议提交详细日志给开发团队进行进一步分析。

回到顶部
AI 助手
你好,我是IT营的 AI 助手
您可以尝试点击下方的快捷入口开启体验!