我正在应用程序中记录通信语音,并且添加了存储和音频记录许可清单,并以编程方式获取了
。我的代码在一台设备上运行正常(Android 6.0 Lenovo K3 Note) 但不能在另一个(Android 8.1 ONEPLUS A5010)上使用
在第二个设备输出中,将其另存为3.15KB的空白文件
我正在添加我正在使用的代码,请告诉我我做错了。
MediaRecorder mRecorder;
String mFileName;
OnCreate中的代码
File file = new File(getFilesDir(), "engwingoLastCall.3gp");
mFileName = file.getAbsolutePath();
try {
if(mRecorder == null) {
mRecorder = new MediaRecorder();
mRecorder.setAudioSource(MediaRecorder.AudioSource.VOICE_COMMUNICATION);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
mRecorder.setOutputFile(mFileName);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
}
} catch (Exception e) {
Log.d(TAG,"Recorder Error:"+e.getMessage());
}
方法
public void startRecording() {
try {
if(mRecorder != null) {
mRecorder.prepare();
mRecorder.start();
}
} catch (Exception e) {
Log.d("Recorder", "prepare() failed");
}
}
public void stopRecording() {
if(mRecorder != null) {
try {
mRecorder.stop();
mRecorder.release();
mRecorder = null;
} catch (IllegalStateException e) {
e.printStackTrace();
}catch (Exception e){
Log.d(TAG,e.getMessage());
}
}
}
答案 0 :(得分:1)
由于您未使用setProfile()
方法设置配置文件,因此可能还需要设置音频的声道,比特率和采样率。这是一个示例:
mRecorder.setAudioChannels(1);
// you would not want to record stereo, it is not logical
mRecorder.setAudioEncodingBitRate(128000);
// you can set it to 64000 or 96000 to lower quality, therefore decreasing the size of the audio
mRecorder.setAudioSamplingRate(44100);
// AFAIK, default value.
希望这会有所帮助。
答案 1 :(得分:1)
我的代码还可以,但是记录器出现这种情况的原因是, 当时还使用我的刻录机进行了一些其他服务,这就是为什么文件被保存为空(3.15KB大小)