如何以编程方式访问 ipad“视频”文件夹
我使用的是 iPad,并且我在 iPad 上的“视频”文件夹中存储了视频/电影。 注意:我并没有尝试访问“照片”部分中保存的视频,我已经可以使用以下命令访问此处保存的视频:
UIImagePickerController* picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
[picker setMediaTypes:[NSArray arrayWithObject:(NSString *)kUTTypeMovie]];
但是,这不会访问我存储在 iPad 上的“视频”文件夹中的视频和电影。 - 通过 itunes 购买和下载的。
是否可以访问该文件夹?我已升级到新的 3.2.5 beta,看看这是否有帮助,但找不到解决方案。
有人知道如何或者这是否可能吗?
I am using the iPad, and I have videos/movies stored in the "Videos" folder on the iPad.
Note: I'm not try to access videos saved in the Photos Section, I can already access videos saved in here by using;
UIImagePickerController* picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
[picker setMediaTypes:[NSArray arrayWithObject:(NSString *)kUTTypeMovie]];
However this does not access the videos and movies that I have stored in my Videos folder on the iPad. - ones which have been purchased and downloaded via itunes.
Is it possible to get access to this folder? I have upgraded to the new 3.2.5 beta to see if this would help but cannot find a solution.
Anyone know how or if this is even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法使用 SDK 访问 iPod 库中的视频。 ipod 库访问编程指南如下:
我也用头撞墙试图找到这个..
It is not possible to access videos in the ipod library using the SDK. The ipod library access programming guide says the following:
I beat my head against the wall trying to find this too..