AVPlayerデリゲートはありませんか?曲の再生がいつ終了したかを追跡する方法は?Objective CiPhoneの開発


84

周りを見回しましたが、のデリゲートプロトコルが見つかりませんAVPlayer class。何が得られますか?

私はそのサブクラス、を使用して、それぞれがURLからロードされたのAVQueuePlayer配列を再生AVPlayerItemsしています。曲の再生が終了したときにメソッドを呼び出す方法はありますか?特にキューの最後に?

それが不可能な場合は、バッファリング後に曲の再生が開始されたときにメソッドを呼び出す方法はありますか?そこに読み込みアイコンを取得しようとしていますが、[audioPlayer play]アクションの後であっても、音楽が実際に始まる前にアイコンがオフになります。

回答:


152

はい、AVPlayerクラスにはAVAudioPlayerのようなデリゲートプロトコルがありません。AVPlayerItemの通知をサブスクライブする必要があります。AVPlayerで渡すのと同じURLを使用してAVPlayerItemを作成できます-initWithURL:

-(void)startPlaybackForItemWithURL:(NSURL*)url {

    // First create an AVPlayerItem
    AVPlayerItem* playerItem = [AVPlayerItem playerItemWithURL:url];

    // Subscribe to the AVPlayerItem's DidPlayToEndTime notification.
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(itemDidFinishPlaying:) name:AVPlayerItemDidPlayToEndTimeNotification object:playerItem];

    // Pass the AVPlayerItem to a new player
    AVPlayer* player = [[[AVPlayer alloc] initWithPlayerItem:playerItem] autorelease];

    // Begin playback
    [player play]

} 

-(void)itemDidFinishPlaying:(NSNotification *) notification {
    // Will be called when AVPlayer finishes playing playerItem
}

1
itemDidFinishPlaying:コロンなどと一緒に使用してください。NSNotificationCenterドキュメントから:notificationSelectorで指定されたメソッドには、引数(のインスタンスNSNotification)が1つだけ必要です。
ルドルフAdamkovič

@RudolfAdamkovicメモをありがとう-私はそれに応じて私の答えを編集しました。
arexx 2013

8

はい。KVOオブザーバーをプレーヤーのステータスまたはレートに追加します。

- (IBAction)go {
   self.player = .....
   self.player.actionAtItemEnd = AVPlayerActionStop;
   [self.player addObserver:self forKeyPath:@"rate" options:0 context:0]; 
}

- (void)stopped {
    ...
    [self.player removeObserver:self]; //assumes we are the only observer
}

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
    if (context == 0) {
        if(player.rate==0.0) //stopped
            [self stopped];
    }
    else
        [super observeVal...];
}

基本的にはそれだけです。

免責事項:私はここにそれを書いたので、コードが良いかどうかをチェックしませんでした。また、これまでAVPlayerを使用したことはありませんが、ほぼ正しいはずです。


@ "rate"オブザーバーを削除する方法は?
Saumil Shah 2016

私は編集で、確実にレートを観察する必要があると言われました。適応
Daij-Djan 2017

4
このアプローチの問題は、一時停止が音楽の終わりであると考えることです。一時停止時のレートは、終了時と同様にゼロです。
C6Silver 2017

5

Swift3-AVPlayerItemプレーヤーにビデオを追加するたびにオブザーバーを追加します。

func playVideo(url: URL) {
  let playerItem = AVPlayerItem(asset: AVURLAsset(url: someVideoUrl))
  NotificationCenter.default.addObserver(self, selector: #selector(playerItemDidPlayToEndTime), name: NSNotification.Name.AVPlayerItemDidPlayToEndTime, object: playerItem)
  self.player.replaceCurrentItem(with: playerItem)
  self.player.play()
}

func playerItemDidPlayToEndTime() {
  // load next video or something
}

1

Apple docs AVFoundationプログラミングガイドには多くの情報があります(監視再生セクションを探してください)。これは主にKVOを介しているように見えるので、あまり慣れていない場合は、それをブラッシュアップすることをお勧めします(Key Value ObservingProgrammingGuideへのガイドがあります)。


4
おかげで、最初はKVOで時間を監視して動作させましたが、よりクリーンでプロセッサへの負荷が少ないため、AVPlayerItemDidPlayToEndTimeNotificationを実装しました。
タイラー

1
NSNotificationCenter、KVO、およびブロックベースのクレイジーな組み合わせが少しあります。アップルを思い浮かべてください!
cupawnTae 2017

1

私はこれを使用しています、そしてそれは動作します:

_player = [[AVPlayer alloc]initWithURL:[NSURL URLWithString:_playingAudio.url]];
CMTime endTime = CMTimeMakeWithSeconds(_playingAudio.duration, 1);
timeObserver = [_player addBoundaryTimeObserverForTimes:[NSArray arrayWithObject:[NSValue valueWithCMTime:endTime]] queue:NULL usingBlock:^(void) {
    [_player removeTimeObserver:timeObserver];
    timeObserver = nil;
    //TODO play next sound
}];
[self play];

どこ_playingAudio私のカスタムクラスは、いくつかのプロパティであるとtimeObserverされidIVAR。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.