i am using AVPlayer for my m3u8 streaming that is working perfectly on iphone and ipad devices but when i try to play that streaming on Apple Tv via Airplay its not working i setup AVPlayer for AppleTv Like this:
NSURL *url = [NSURL URLWithString:@"//m3u8 path here"]; AVPlayerItem *playerItem = [AVPlayerItem playerItemWithURL:url];
self.videoPlayer = [AVPlayer playerWithPlayerItem:playerItem];
self.playerLayer = [AVPlayerLayer playerLayerWithPlayer:self.videoPlayer];
[self.playerLayer setFrame:self.view.frame];
[self.view.layer addSublayer:self.playerLayer];
[self.videoPlayer play];
[self.videoPlayer setAllowsExternalPlayback:YES];
self.videoPlayer.usesExternalPlaybackWhileExternalScreenIsActive = YES;
After connect my mobile with Apple Tv i run the above code and then apple tv start loading and after complete loading i can see only first picture of streaming on my tv and then stop its stuck i don't know why its stuck i try lot of others m3u8 links but every link stuck on apple tv, so can anybody help me and tell me where is going wrong.....Thanks