Improve Audio Recording quality in android?

对着背影说爱祢 提交于 2019-11-29 08:20:57

Try this one -

recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
recorder.setAudioEncoder(MediaRecorder.getAudioSourceMax());
recorder.setAudioEncodingBitRate(16);
recorder.setAudioSamplingRate(44100);
recorder.setOutputFile(path);
recorder.prepare();
recorder.start(); 

Android has mainly supported 3 sound formats (i mean from creation point of view) : 3gp, mp4 and amr. Actually all there quality is very poor, so nothing to do about that.

Anyway you can use external mp3 codecs or save it as wave file. Sounds will be more clear but such codec(wav) will require large voice file in comporations of three formats mentioned above.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!