i am trying to develop a small app which should stream audio from a particular link. I am using AVPlayer for that but i dont know why its not working. Tried google but nothing seems to be relevant there. Kindly Help.. thank you
- (void)viewDidLoad
{
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"http://108.166.161.206:8826/stream.mp3"];
self->playerItem = [AVPlayerItem playerItemWithURL:url];
self->player = [AVPlayer playerWithPlayerItem:playerItem];
self->player = [AVPlayer playerWithURL:url];
[player play];
}