Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

newtoiphonesdk

macrumors 6502a
Original poster
Jul 30, 2010
567
2
I have a custom movie player in which I allow access to the videos in photos app. The only way I could think of to select the movie is
Code:
-(IBAction) getVideo:(id) sender {
	UIImagePickerController *picker = [[UIImagePickerController alloc] init];
	picker.delegate = self;
	picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
	picker.mediaTypes =  [[[NSArray alloc] initWithObjects: (NSString *) kUTTypeMovie, nil] autorelease];
	picker.allowsEditing = YES;
    picker.wantsFullScreenLayout = YES;
	[self presentModalViewController:picker animated:YES];
	[picker release];
}
Live compression takes forever, nearly real-time...is there any other option for selecting a movie from photos app that would do something quicker than live compression to play it?
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.