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