AVFoundation NSURL无法正确显示?

时间:2012-08-10 01:38:51

标签: objective-c ios

所以我尝试使用苹果提供的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];

1 个答案:

答案 0 :(得分:1)

查看这个苹果示例代码。这是使用AVFoundation。

我看一下以下Apple的示例代码。

您只想实现其中的步骤似乎在代码下您将会非常有帮助。

StitchedStreamPlayer

我上传到myServer Tested。完美。还有Youtube,Vimeo等......工作正常。

相信我。 3G,在两种环境中测试wifi。虽然示例代码,但令人惊讶的是完美无缺。