Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要加载一个电影文件,在它的开头插入几帧,然后保存视频文件(保留它的原始视频和音频格式,这很重要)。
QTKit 概述文档描述了如何检索和应用不同的过滤器到现有的电影。但是如何在不改变电影其余部分的情况下添加新帧?你能指出我正确的方向吗?谢谢!
要将帧添加到电影使用
[QTMovie addImage:forDuration:withAttributes:]
将电影保存到文件中:
[movie writeToFile:fileName withAttributes:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:QTMovieFlatten]]
这将创建一个保留原始编解码器的新视频文件。