如何更改AVPlayer Live Streaming URL?

时间:2017-04-19 08:54:23

标签: ios objective-c avplayer audio-streaming live-streaming

嗨开发人员和专家,我需要你的好建议和帮助。我正在使用一个有四个不同无线电频道(按钮)的应用程序。我正在使用AVPlayer进行直播。我想在ViewDidLoad中创建一个AVPlayer对象,只需使用四个不同的按钮更改流式URL,而无需一次又一次地重新创建AVPlayer对象。我用谷歌搜索但没有找到任何解决方案。所以你的好建议和帮助将不胜感激。感谢

- (IBAction)playBtn_clicked:(id)sender {

     NSURL *streamURL = [NSURL URLWithString:urlString];

    // I don't like this line, creating a new object again and again
    _streamPlayer = [[AVPlayer alloc] initWithURL:streamURL]; 

    if (_streamPlayer.rate == 1.0) {
        [_streamPlayer pause];
    } else {
        [_streamPlayer play];
    }
}

2 个答案:

答案 0 :(得分:11)

AVPlayer有一种方法来改变" currentItem"新的。

在ViewDidLoad()

let player = AVPlayer(playerItem: nil) // You can use an item if you have one

然后,当您想要更改当前项目时......或设置为nil以将其删除...

player.replaceCurrentItem(with: AVPlayerItem(url: streamingURL))

注意:是的,它在Swift 3中,我手头没有它的ObjC版本。

这样,您可以创建一个AVPlayer实例,并处理正在播放的当前AVPlayerItem。

答案 1 :(得分:4)

最后,我通过替换AVPlayer中的当前项而不是更改播放器中的Streaming URL找到了解决方案。

 - (void)viewDidLoad {
   [super viewDidLoad];
   // Do any additional setup after loading the view.

   _streamPlayer = [[AVPlayer alloc] init];
}


- (IBAction)playBtn_clicked:(id)sender {

  NSURL *streamURL = [NSURL URLWithString:_urlString];
  AVPlayerItem *currentItem = [[AVPlayerItem alloc] initWithURL:streamURL];
  [_streamPlayer replaceCurrentItemWithPlayerItem:currentItem];
}