美文网首页
AVAudioPlayer 播放不了下载的音频文件

AVAudioPlayer 播放不了下载的音频文件

作者: 后青春期的诗大喵 | 来源:发表于2021-01-29 16:17 被阅读0次

    网上很早有人提这个类不能播放出来声音。这里避坑总结下真实原因。

    1.音频文件后缀类型需要跟文件二禁止头部的类型相同,initWithContentsOfURL才能成功,否则init失败,player初始化为nil,肯定不能播放。

    苹果API注释如下:
    /* all data must be in the form of an audio file understood by CoreAudio */
    - (nullable instancetype)initWithContentsOfURL:(NSURL *)url error:(NSError **)outError;
    
    

    2.可以使用initWithData不用判断文件类型,直接读取和播放二禁止文件。

    相关文章

      网友评论

          本文标题:AVAudioPlayer 播放不了下载的音频文件

          本文链接:https://www.haomeiwen.com/subject/bjoqtltx.html