tags:

views:

35

answers:

1

I want to know is it possible to get the temporary path of the video that has been recorded in iphone?I want to create an app that record through iphone and then saved the video to a place where I want.

A: 

Yes, see didFinishPickingMediaWithInfo in the UIImagePickerControllerDelegate documentation. You're given a path to the video the user just recorded.

David Maymudes
Thanx David its working....To save the video the user has to click a use button.Now I want that to be remove....The video should be saved without touch of the use button i.e as soon as the user touch the stop button....Is there a way to do that?Please show me the way.
XcoderMi2
Is there no way to get the path of a video without using the - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info function??Please its very urgent....
XcoderMi2
no way to do this at present, but it seems likely Apple will add this to the iPhone OS eventually, as they did for taking still images. If you don't care about whether your app is approved for sale, you might be able to find a way to simulate a press on the button yourself if you hack around in the view hierarchy.
David Maymudes