本文介绍了如何使用AVCaptureVideoDataOutput保存视频(mp4格式)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已设置输入,AVCapture会话的输出以及委托
I have set up the input, and the output for the AVCapture session and also the delegate
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection
正在获取调用。如何将帧转换为mp4视频文件并保存?
is getting called. How do I convert the frames to a mp4 video file and save it?
推荐答案
使用AVAssetWriter压缩数据并写入MP4。这两个示例包含执行此操作的代码:
Use an AVAssetWriter to compress the data and write to MP4. These two samples contain code that does this:
G
这篇关于如何使用AVCaptureVideoDataOutput保存视频(mp4格式)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!