CMTime是专门用于标识电影时间的结构体,通常用如下两个函数来创建CMTime
(1)CMTimeMake
CMTime CMTimeMake (
int64_t value, //表示 当前视频播放到的第几桢数
int32_t timescale //每秒的帧数
);
value = [slider value];
timescale = self.player.currentItem.asset.duration.timescale;
(2) CMTimeMakeWithSeconds
CMTime CMTimeMakeWithSeconds(
Float64 seconds, //第几秒的截图,是当前视频播放到的帧数的具体时间
int32_t preferredTimeScale