我在我的应用程序中录制了声音,但录制的声音音量太低。如果我能把声音录得更响亮或者在播放的时候大声一点就更好了。
这是我的录音代码:
myRecorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
myRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT);
myRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);
myRecorder.setOutputFile(Environment.getExternalStorageDirectory() + "/" + musicName + ".mp3");
myRecorder.setAudioChannels(2);
myRecorder.setAudioEncodingBitRate(320);
myRecorder.setAudioSamplingRate(48000);