Uploading video file to server from iPhone
- by SshUser
I know how to upload images to a server running PHP, but I am stuck on uploading video.
I have used this advice to upload my video file.
Posting method is all ok. What I get on the server is a file of 0 bytes.
My code is below:
- (void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info {
NSURL *videoURL = [info objectForKey:UIImagePickerControllerMediaURL];
NSData *videoData = [NSData dataWithContentsOfFile:[videoURL path]];
}
This videoData is passed in my POST method.
What should I do instead?