acc格式音频录音
2017-11-29 本文已影响0人
原晓桢
ios
设置AVFormatIDKey 为kAudioFormatMPEG4AAC即可
安卓
mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mRecorder.setOutputFile(mVoiceData);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.AAC_ADTS);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);