我必须使用哪个框架来进行视频格式转换
我需要将视频格式转换为其他格式,例如 .mov 文件转换为 .wmv 格式, .mov 到 mp4/mp3/mpeg-1 等, 我必须在可可中使用哪个框架来进行视频格式转换。
我可以使用 QuickTime Framework 来实现此目的吗?
任何帮助将不胜感激。
谢谢, 阿克巴
I have a requirement to convert the format of video to another format such as .mov file to .wmv format,
.mov to mp4/mp3/mpeg-1 etc,
which frame work I have to use in cocoa for video format conversion.
can I use QuickTime Framework for this purpose.
Any help would be appreciated.
Thanks,
Akbar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想继续使用纯 Cocoa 那么你将需要 QTKit 框架。然而,除非 Lion 有所改变,否则 QuickTime 框架会缺少很多功能。
如果您使用 QuickTime,那么您可能还需要使用 CoreVideo 框架。
或者,您可以考虑 LGPL libavcodec 库。
If you want to stay with pure Cocoa then you will need QTKit framework. However, unless things have changed with Lion, a lot of functionality is missing from QuickTime framework.
If you go with QuickTime then you probably need to use the CoreVideo framework as well.
Alternatively, you could consider the LGPL libavcodec library.