Appleが提供するhttpライブストリームの例を使用して、ビデオをライブストリームしようとしています。プログラムはコンパイルされますが、iPhone には何も表示されません。以下はコードです:
ありがとうございました。
NSURL *url = [NSURL URLWithString:@"<#http://developer.apple.com/resources/http-streaming/examples/advanced-stream.html#>"];
/*
// You may find a test stream at <http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8>.
self.playerItem = [AVPlayerItem playerItemWithURL:url];
[playerItem addObserver:self forKeyPath:@"status" options:0 context:&ItemStatusContext];
self.player = [AVPlayer playerWithPlayerItem:playerItem];
*/
/*
self.player = [AVPlayer playerWithURL:url];
[player addObserver:self forKeyPath:@"status" options:0 context:&PlayerStatusContext];
*/
self.playerItem = [AVPlayerItem playerItemWithURL:url];
//(optional) [playerItem addObserver:self forKeyPath:@"status" options:0 context:&ItemStatusContext];
self.player = [AVPlayer playerWithPlayerItem:playerItem];
self.player = [AVPlayer playerWithURL:url];
[player play];
[super viewDidLoad];