Is it possible to change the source for android MediaRecorder?

I would like to record with a video stream or file instead of camera source,

the most likely method I found is 'MediaRecorder.setVideoSource',

but it has only two choices: DEFAULT and CAMERA

Could someone give me a hand?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can extend the MediaRecorder, or create a new class, based on the original, as its code may be seen here. Yet it is just a wrapper for the native library that does the actual work, so if you want to modify the functionality in such a way you might need to build your own costume version of Android.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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