不能在iOS上播放的AAC格式视频

时间:2014-04-18 05:04:03

标签: android ios audio avaudioplayer android-mediarecorder

我在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"操作无法完成。

0 个答案:

没有答案