开发者

How to programmatically access ipad "Video" folder

开发者 https://www.devze.com 2023-01-22 00:48 出处:网络
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

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]];

Howe开发者_StackOverflow社区ver 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?


It is not possible to access videos in the ipod library using the SDK. The ipod library access programming guide says the following:

 Note: iPod library access applies only to audio-based media items. 
You cannot play video podcasts, movies, or television shows from the iPod library.

I beat my head against the wall trying to find this too..

0

精彩评论

暂无评论...
验证码 换一张
取 消