6

我写了一个简单的录音机程序。我将输出格式设置为 THREE_GP,但生成的文件的 mime 类型设置为视频(当我尝试查看文件详细信息时)。

知道为什么吗?

 mRecorder = new MediaRecorder();
 mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
 mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
 mRecorder.setOutputFile(recordingFilePath);
4

0 回答 0