NSURL* fileURL=[_musicListViewModel fileURLWithModel:model];
NSData* assetData=[NSData dataWithContentsOfURL:fileURL];
AVAudioPlayer* audioPlayer=[[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:nil];
[audioPlayer play];
AVAsset*asset=[AVURLAsset URLAssetWithURL:fileURL options:nil];
AVAsset* asset=[AVAsset assetWithURL:fileURL];
if (!asset.playable){
[self playerErrorHandler];
return;
}
fileURL 是 file:///var/mobile/Containers/Data/Application/5A0A1FF9-F884-4CB9-9F59-BBFCB7C51A1B/Documents/music_data_path/yI3a6r 。
而且 assetData 不为零。
audioPlayer 可以从文件中播放,而两个 asset 初始化都不能使其自身可播放。
错误:后缀是必不可少的
音频文件的后缀是.mp3,但是当我将后缀附加到文件路径时它不起作用。
我的代码有什么问题???
Best Answer-推荐答案 strong>
最后,我发现filePath中必须有后缀,否则AVAsset不能播放,不喜欢AVAudioPlayer。
关于ios - AVAsset 不能与本地音频文件一起播放,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/40275835/
|