以编程方式访问 iPhone 视频的方向

发布于 2024-09-01 03:49:03 字数 111 浏览 2 评论 0原文

我需要访问 UIImagePickerController 返回的视频并知道它是纵向还是横向录制的。我已经看到对 mov_read_tkhd 的引用,但我不确定这是否能完成这项工作,或者确实如何包含必要的库。

I need to access a video returned by the UIImagePickerController and know if it was recorded portrait or landscape. I've seen references to mov_read_tkhd but I'm not sure if that will do the job, or indeed how to include the necessary libraries.

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

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

发布评论

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

评论(1

随风而去 2024-09-08 03:49:03

在 iOS 4 及更高版本上,使用 3GS/3rd gen iTouch 或更高版本,您可以使用新的 AVFoundation 库。

像这样的东西:

NSURL *url = // url to the video returned by the picker
AVAssetTrack *videoTrack = [[url tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];
videoTrack.preferredTransform; // CGAffineTransform that tells you whether the video is rotated from original orientation
videoTrack.naturalSize; // CGSize that tells you the current dimensions of the video

On iOS 4 and above, with 3GS/3rd gen iTouch or better, you can use the new AVFoundation libraries.

Something like:

NSURL *url = // url to the video returned by the picker
AVAssetTrack *videoTrack = [[url tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];
videoTrack.preferredTransform; // CGAffineTransform that tells you whether the video is rotated from original orientation
videoTrack.naturalSize; // CGSize that tells you the current dimensions of the video
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文