I\'m using MediaRecorder to record a video. It isn\'t clear to me what parameters I should be using to change the quality of the image, assuming the size of the video remain
You have to increase video encoding bit rate to increase the video quality using setVideoEncodingBitRate() in MediaRecorder.
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);
mRecorder.setVideoEncodingBitRate(4000000);`