我正在制作 Instagram 类视频录制和发布应用。我的最长录制时间为15秒,我需要显示一个进度条。This link helped。在这里编码。
CMTime maxDuration = CMTimeMakeWithSeconds(15, 50);
[[self movieFileOutput] setMaxRecordedDuration:maxDuration];
结果stopRecording
未被调用,{15}结束时调用AVCaptureFileOutputRecordingDelegate
。我需要创建3个视频,每个5secs并相应地更新进度条,以便在15秒结束时我的进度条就像 Instagram 一样。请帮忙