美文网首页
AVCompositon-插入视频轨道关于时间轴的正确姿势

AVCompositon-插入视频轨道关于时间轴的正确姿势

作者: 9362d9acd9ef | 来源:发表于2017-08-30 09:33 被阅读24次
    - (BOOL)insertTimeRange:(CMTimeRange)timeRange ofTrack:(AVAssetTrack *)track atTime:(CMTime)startTime error:(NSError * _Nullable *)outError;
    

    其中的 startTime 给了一个 CMTimeMakeWithSeconds(1, NSEC_PER_SEC) 创建的 CMTime ,导致了生成的 AVCompositon 无法被 AVPlayer 播放。

    修改为 CMTimeMakeWithSeconds(1, 600) 就可以正常工作。

    相关文章

      网友评论

          本文标题:AVCompositon-插入视频轨道关于时间轴的正确姿势

          本文链接:https://www.haomeiwen.com/subject/kzezdxtx.html