我正在使用 AVPlayer 从服务器播放本地 .mp3 文件和音频流。我也想播放本地 .pcm 文件。
NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory
, NSUserDomainMask
, YES);
NSString * voiceFile = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"OutPut.pcm"];
但它没有用。我收到未知错误。
似乎 AudioQueue 可以正确播放 .pcm。
但是有没有一种示例方法可以让 AVPlayer 像 .mp3 一样直接播放 .pcm?