1

抱歉,如果这是一个非常简单的问题,但是:

我正在尝试创建 Quicktime 电影的参考电影。我正在剪切电影的部分内容,然后我想将文件保存为参考而不是自包含电影。我知道如何进行切割以及如何保存自包含文件,但我不知道如何制作参考文件。

谢谢您的帮助。

4

1 回答 1

0

-[QTMovie writeToFile:withAttributes:]with nilas 属性字典应该可以工作。

如果 - 无论出于何种原因 - 它不能直接与您编辑的电影一起使用,我能想到的最简单的方法是:

// assuming "sourceMovie" is your edited QTMovie:
NSError *error;
QTMovie *destinationMovie = [QTMovie movieWithData:[sourceMovie movieFormatRepresentation] error:&error];
if ( !destinationMovie )
//  bail!
if ( ![destinationMovie writeToFile:newFilename withAttributes:nil error:&error] ) 
//  respond to not being able to write...
于 2011-02-03T14:41:11.210 回答