Cocoa Objective C - 如何将图像数组转换为视频文件,并将其保存到磁盘?
我的 Cocoa 应用程序是一个套接字服务器,它从我的 iphone 接收视频帧,并将它们作为视频显示在屏幕上。 收到图像后,我将它们保存在数组中。 有没有办法将这组图像转换为视频文件并让用户将该文件保存到磁盘?
谢谢
My Cocoa application is a socket server which receives video frame from my iphone, and displays them on the screen as a video.
I am saving every image in an array after i receive them.
Is there a way to convert this array of images to a video file and let the user to save this file to disk?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看
QTKit.framework 中的 QTMovie
。特别是,一旦创建了影片实例,您就可以使用-[QTMovie addImage:forDuration:withAttributes:]
向影片添加“帧”。Have a look at
QTMovie
in QTKit.framework. In particularly, once you've created a movie instance, you can use-[QTMovie addImage:forDuration:withAttributes:]
to add a "frame" to the movie.