The Android Dev has some easy code describing how to start the camcorder via Intents.

Now this is good if you just want to start up the camera and wait for the user to press the red "REC" button.

But I want to call the camcorder via Intent and tell it to start recording programmatically.

How to I do that? Do I pass some kind of start() method in the Intent command?

(if it can't be done, please show me a simple code bit that can be set up to record video automatically - I have been searching the web, but all codesnippets regarding this issue don't work)

private static final int CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE = 100;
private Uri fileUri;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

// create Intent to take a picture and return control to the calling application
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE); // create a file to save the image
intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri); // set the image file name

// start the image capture Intent
startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);

}

link|improve this question
feedback

1 Answer

For this you should use MediaRecorder class.

Please have a look at this :

http://developer.android.com/reference/android/media/MediaRecorder.html

link|improve this answer
I know of the MediaRecorder class, and been through the code examples that they present in the Dev guide. But the code examples lack precision. It is hard to make out how the code is to be used. – user1020196 Nov 2 '11 at 8:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.