2012-08-10 97 views
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]; 

回答

1

查看這個蘋果的示例代碼。這是使用AVFoundation。

我看下面的Apple推薦的示例代碼。

你只是想實現它似乎是在代碼中的步驟你會很有幫助。

StitchedStreamPlayer

我上傳到MYSERVER測試。完美。還有Youtube,Vimeo等......工作正常。

相信我。 3G,在兩種環境下都測試過WiFi。儘管示例代碼,這是令人驚訝的完美作品。

+0

我如何使它自動播放?對不起,我是一個noob。 =/ – DasBoot 2012-08-10 04:48:21

+0

我試過youtube,vimeo和其他許多人,它會拋出一個錯誤:「未知錯誤:-12939」。我錯過了什麼?有人可以幫助解決這個問題嗎? – Deepukjayan 2012-08-22 12:26:47

+0

您需要鏈接到正確的視頻格式。 – headkit 2012-08-24 11:53:38