访问沙箱外的视频文件

发布于 2024-12-01 03:57:50 字数 241 浏览 1 评论 0原文

在 iPhone 上访问视频文件以便通过蓝牙传输的过程是怎样的?

NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"movie" ofType:@"m4v"];

如何访问 iPhone 上的文件系统?通过使用 NSFileManager 我只能访问应用程序沙箱中的文件。

What is the process for accessing a video file on an iPhone so I can transfer it via Bluetooth?

NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"movie" ofType:@"m4v"];

How can I access the file system on the iPhone? By using NSFileManager I can only access the files in the application's sandbox.

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

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

发布评论

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

评论(2

野侃 2024-12-08 03:57:50

除了提供文件(如 UIImagePickerViewController)和互联网上的内容的控制器之外,您的应用程序无法访问任何其他内容。

Your application can't access any other content besides the controllers that provide files(like UIImagePickerViewController) and stuff on the internet.

多情癖 2024-12-08 03:57:50

您可以通过 AssetsLibraryAVFoundation(使用 AVAssetReader)访问用户照片中的视频内容,但这种方式只能解码帧,不能按原样传输视频文件。

You can access video content in the users Photos through AssetsLibrary and AVFoundation (using AVAssetReader), but you can only decode frames this way, you cannot transfer the video file as-is.

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