我正在开发一个应用程序,它可以播放实时HTTP广播流(.pls,.mp3 .)。我可以使用MPMusicPlayerController播放流吗?塔克斯。
发布于 2013-12-16 09:41:50
我不认为你可以使用MPMusicPlayerController播放流媒体音频。你应该看看AVPlayer。
NSURL *url = [NSURL URLWithString:url];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
AVPlayerItem *playerItem = [AVPlayerItem playerItemWithAsset:asset];
AVPlayer *audioPlayer = [AVPlayer playerWithPlayerItem:playerItem];
[audioPlayer play];https://stackoverflow.com/questions/20607433
复制相似问题