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?
|
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?
| ||||
|
feedback
|
|
This is indeed possible. See the setAudioEncoder method in MediaRecorder:
So if you only want video, simply do not invoke this method. | |||
|
feedback
|