访问沙箱外的视频文件
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了提供文件(如 UIImagePickerViewController)和互联网上的内容的控制器之外,您的应用程序无法访问任何其他内容。
Your application can't access any other content besides the controllers that provide files(like UIImagePickerViewController) and stuff on the internet.
您可以通过
AssetsLibrary
和AVFoundation
(使用AVAssetReader
)访问用户照片中的视频内容,但这种方式只能解码帧,不能按原样传输视频文件。You can access video content in the users Photos through
AssetsLibrary
andAVFoundation
(usingAVAssetReader
), but you can only decode frames this way, you cannot transfer the video file as-is.