Android - mute microphone while recording video
问题 I'm recording a video with the camera, using the MediaRecorder class, after following a tutorial similiar to this http://androidcookbook.com/Recipe.seam;jsessionid=40151FCD26222877E151C3EEFB406EED?recipeId=1375&recipeFrom=ViewTOC And I want while recording, to be able to mute / unmute the microphone. How's that possible? I'm setting the audio source at start mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.CAMCORDER); mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA); But