我正在尝试制作在线音频播放器。但是我无法使用AVAudioPlayer对象来调整音频。请帮我。在此先感谢。
这是我的音频播放器代码。 ================>>
NSURL *url =[[NSURL alloc] initWithString:@"My Url"];
xPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];
xPlayer.numberOfLoops = 0;
xPlayer.volume = 1.0f;
[xPlayer prepareToPlay];
[xPlayer play];
答案 0 :(得分:1)
问:AVAudioPlayer是否支持流媒体音频内容?
答:AVAudioPlayer类不支持基于HTTP URL的流式音频。与initWithContentsOfURL一起使用的URL:必须是文件URL(file://)。也就是说,本地路径。
来源:https://developer.apple.com/library/ios/qa/qa1634/_index.html