0
因此,我正在嘗試使用Apple提供的http實況流示例直播視頻。該程序編譯,但它不會顯示我的iPhone上的任何東西。以下是代碼:AVFoundation NSURL不顯示正確?
謝謝。
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];
我如何使它自動播放?對不起,我是一個noob。 =/ – DasBoot 2012-08-10 04:48:21
我試過youtube,vimeo和其他許多人,它會拋出一個錯誤:「未知錯誤:-12939」。我錯過了什麼?有人可以幫助解決這個問題嗎? – Deepukjayan 2012-08-22 12:26:47
您需要鏈接到正確的視頻格式。 – headkit 2012-08-24 11:53:38