Question

I am developing an application that plays a live HTTP web radio streaming (.pls, .mp3 ...). Can i use the MPMusicPlayerController to play the stream ? Thaks.

Was it helpful?

Solution

I don't think you can play streaming audio using MPMusicPlayerController. You should look at 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];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top