Xcode Cocoa QTKit - 创建参考文件

发布于 2024-09-30 21:21:04 字数 145 浏览 9 评论 0原文

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

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

感谢您的帮助。

Sorry if this is a very easy question but:

I'm trying to create a reference movie of a Quicktime movie . I am cutting parts of the movie out then I want to save the file as a reference not a self contained movie. I know how to do the cutting and how to save a self contained file but I don't know how to make a reference file.

Thanks for the help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒废 2024-10-07 21:21:04

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

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

// 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...

-[QTMovie writeToFile:withAttributes:] with nil as attribute-dictionary should work.

If — for whatever reason — it doesn't work directly with your edited movie, the simplest way I can think of is:

// 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...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文