I need to play online radio in my application. The url is "http://v5.player.abacast.com/v5.1/player/?uid=6132".and I am using below code for playing online radio.
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL: [NSURL URLWithString:@"http://v5.player.abacast.com/v5.1/player/?uid=6132"]];
player.movieSourceType = MPMovieSourceTypeStreaming;
player.view.hidden = YES;
[self.view addSubview:player.view];
[player prepareToPlay];
[player play];
and I also use iphonestreamplayer both are not working.