Rupesh
Rupesh

Reputation: 7906

iPhone: whether it is possible to make video programmatically

i want to create a video programmatically using iPhone camera. i can take a picture programmatically . but about video i am not sure. so please suggest whether it is possible or not ? if yes, then please guide me or provide me some useful link

Upvotes: 0

Views: 965

Answers (2)

slf
slf

Reputation: 22767

Yes, if the device supports it. In fact, you use the same APIs that you would to capture the camera stills.

Have a look at the Setting Required Hardware Capabilities article as well as UIImagePickerController and UIImagePickerControllerDelegate, they have been updated for 3.1

Upvotes: 2

RaYell
RaYell

Reputation: 70414

It is possible only in iPhone 3GS. iPhone 3G doesn't support video capture.

UIImagePickerController is the class you are looking for. It allows you to take pictures (on 3G and 3GS) and record videos (on 3GS).

Upvotes: 1

Related Questions