I would like to write a program that records video but not sound.

Can anyone help me on how to not record the sound while recording the video using MediaRecorder?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

This is indeed possible. See the setAudioEncoder method in MediaRecorder:

If this method is not called, the output file will not contain an audio track.

So if you only want video, simply do not invoke this method.

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.