2
votes
0answers
48 views

Playback of a video stored on Camera Roll?

I'm having trouble trying to playback a video stored on an iOS device's camera roll. This is an Adobe AIR app, using two air native extensions (ANE): one extension for picking media (images and ...
0
votes
0answers
29 views

to play a specific video from photo library in ipad using objective C

I am trying to develop an application in which ,I have to play a specific video from photo Library within iPad using objective C. I have written the code for playing videos from photo Library and ...
0
votes
1answer
94 views

Play recorded video using UIImagePickerController

I am creating an app which will record a video using UIImagePickerController and I am saving the recorded video in documents directory and trying to play back the video on click of USE (want to show ...
1
vote
2answers
262 views

UIImagePickerController and application background modes

I’m building an application which supports both video playback and recording (not simultaneously, it’s just two separate features it provides). In order to make the videos play after the app enters ...
2
votes
0answers
536 views

UIImagePickerController and MPMoviePlayerController Memory issue

I have a very unpleasant issue, and i would appreciate any help! I am making a video App. The app starts with a VC that immediately calls un UIImagePicker modal VC. After taking a video, I modally ...
0
votes
0answers
83 views

UIImagePickerController camera not shown iPad2

I have a class inherited from UIViewcontroller. In this class, I create UIImagePickerController class for camera. When my app starts, camera is working. Then I played a movie, this is also works. ...
0
votes
2answers
246 views

How can I choose a video from UIImagePickerController and play it?

Currently I use the below code to get the NSURL. But after I got the NSURL how can I play it? - (void)imagePickerController:(UIImagePickerController *)picker ...
0
votes
0answers
202 views

Iphone automatic take picture programmatically while playing video

I want to take picture on the iphone programmatically while playing video. I try to use MPMediaPlayController.view as overlay view of the UIImagePickerController, but when I try to take a picture, ...
1
vote
0answers
104 views

UiImagePicker Video Played in Reverse

I'm attempting to create a silly little app for myself to learn the ins and outs of UIImagePicker and possibly AV Foundation (if needed). What I want to do is allow the user to record a video and play ...
1
vote
0answers
592 views

How to play a local video using MPMoviePlayerController after the video was saved to photo album

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { NSURL *videoURL = [info objectForKey:UIImagePickerControllerMediaURL]; ...
1
vote
2answers
761 views

MPMoviePlayerController doesn't play newly saved video file

I'm using an imagePickerController to record video. In the imagePickerController:didFinishPickingMediaWithInfo: function I'm trying to set the video to a previously defined MPMoviePlayerController: ...
1
vote
1answer
959 views

UISaveVideoAtPathToSavedPhotosAlbum crash

I've a UIImagePickerController in video mode; after I finish recording video and I tap on "Use" button to accept the video I use this method -(void)imagePickerController:(UIImagePickerController ...
0
votes
2answers
1k views

UIImagePickerController mediatype kUTTypeMovie runtime exception

I am developing an iPhone App where I need to only view all the videos present in the Photos Library of a device. I am using the following code UIImagePickerController picker = ...
3
votes
1answer
677 views

MOV playback not working using UIImagePickerController with MPMoviePlayerController

I have read similar threads regarding movie playback in a MPMoviePlayerController after selecting a video using UIImagePickerController including: MPMoviePlayerController do not play movie picked ...
0
votes
2answers
563 views

Video disappearing when played after using UIImagePickerController in a UIPopoverController

I am having the toughest time playing a video after select anything from a UIImagePickerController when the UIImagePickerController is presented in a UIPopoverController. Here is the code that ...
0
votes
2answers
494 views

iPhone - picking a video… URL with two bars?

I have a UIPickerController to select videos in my App and it is crashing when selecting videos using the picker. When I feed the MPMoviePlayerController with the URL directly it works fine, but when ...
10
votes
6answers
2k views

AVAudioRecorder won't record IF movie was previously recorded & played

My iPhone app uses "AVAudioRecorder" to make voice recordings. It also uses "UIImagePickerController" to record movies and "MPMoviePlayerController" to play movies. Everything works fine until I do ...