我在Android上使用以下代码创建了录制的AAC格式音频:
mRecorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
mRecorder.setOutputFile(outputPathString);
然后我尝试在iOS上使用以下代码播放它但失败了:
_audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:audioURL error:&error];
_audioPlayer.numberOfLoops = 0;
_audioPlayer.delegate = self;
[_audioPlayer play];
错误显示:错误域= NSOSStatusErrorDomain代码= 1937337955"操作无法完成。