Actually I want to fix Video orientation issue when a Video is capture on device in portrait or landscape mode. For solving this issue I have this link
How to fix video orientation issue in iOS
and I have also google for solving orientation issue , Every approach need a asset url.So Please tell me how to get reference url when a video is capture from camera.
Currently I am getting UIImagePickerControllerMediaURL
in
- (void) imagePickerController: (UIImagePickerController *) picker
didFinishPickingMediaWithInfo: (NSDictionary *) info
{
NSUrl * url =[info objectForKey:UIImagePickerControllerMediaURL];
NSlog("Url is ::::%@",url);
}
But I want to get UIImagePickerControllerReferenceURL
for recently recorded video.Please guide me .