Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to record video in iphone

Tags:

iphone

HI,

I need to record video using iPhone. To do that i used UIImagePickerController. I have an iPhone 3G, with me. when i run my code to check if source type available it says device not supported. My OS is 3.2.1, where i am wrong, can some one tell me what i need to change.

Also is there some other way to record video. What i need to do is to get the video stream as it is recorded.

    UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;

NSArray *sourceTypes = 
[UIImagePickerController availableMediaTypesForSourceType:picker.sourceType];
if (![sourceTypes containsObject:(NSString *)kUTTypeVideo ]){
    NSLog(@"device not supported");
    return;
}

//picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;    
picker.mediaTypes =  [NSArray arrayWithObject:(NSString *)kUTTypeVideo];    
picker.videoQuality = UIImagePickerControllerQualityTypeHigh;


[self presentModalViewController:picker animated:YES];

Thanks,

like image 423
Timmi Avatar asked Mar 31 '10 04:03

Timmi


2 Answers

That is because the 3G isn't supported for video recording.

like image 74
Lance Avatar answered Oct 11 '22 10:10

Lance


Lance is correct. The native UIImagePickerController does not work on iPhone 3G. If an app does do video recording on a 3G they are doing a hack like taking multiple photos in succession and manually encoding a video file using the individual images.

like image 38
cdeutsch Avatar answered Oct 11 '22 08:10

cdeutsch