MPNowPlayingInfoCenter not reacting properly when pausing playback

11,370

Solution 1

I've the solution! Set only the MPMediaItemPropertyPlaybackDuration

1 - When you start the track, set the property with the total duration of the track:

MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
NSDictionary *songInfo = @{
    MPMediaItemPropertyTitle: title,
    MPMediaItemPropertyArtist: artist
    MPMediaItemPropertyPlaybackDuration : [NSNumber numberWithFloat:length]
};
center.nowPlayingInfo = songInfo;

2 - when you pause the track... do nothing.

3 - when you play the track, set the property with the currentTrackTime:

MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
NSMutableDictionary *playingInfo = [NSMutableDictionary dictionaryWithDictionary:center.nowPlayingInfo];        
[playingInfo setObject:[NSNumber numberWithFloat:player.currentTrackTime] forKey:MPNowPlayingInfoPropertyElapsedPlaybackTime];            
center.nowPlayingInfo = playingInfo;

Solution 2

Here what you searching, this working very good add this to your Class:

- (void)remoteControlReceivedWithEvent: (UIEvent *) receivedEvent {

    if (receivedEvent.type == UIEventTypeRemoteControl) {

        switch (receivedEvent.subtype) {

            case UIEventSubtypeRemoteControlTogglePlayPause:[self playPause:nil];

                break;

            default: break;
        }
    }
}

you can add functions for forward or backward with adding other CASE code like this:

case UIEventSubtypeRemoteControlBeginSeekingBackward:[self yourBackward:nil];
                break;

and to calling play pause you need to create a action like this:

- (IBAction)playPause:(id)sender {

    if (yourPlayer.rate == 1.0){

        [yourPlayer pause];
    } else if (yourPlayer.rate == 0.0) {

        [yourPlayer play];
    }
}

Important: any case you adding need the IBAction

Hope this help you

Share:
11,370

Related videos on Youtube

Jaanus
Author by

Jaanus

Design-driven engineer. iOS. Mac. Web frontend and some backend. Pixel pushing. Gestures, animations, transitions.

Updated on June 12, 2022

Comments

  • Jaanus
    Jaanus about 2 years

    I am trying to get MPNowPlayingInfoCenter to work properly when pausing playback. (I have a streaming music app that uses AVPlayer for playback, and I am playing back in my Apple TV over Airplay.) Everything but pausing seems to be reflected correctly in the Apple TV UI. I am initializing it like this:

    MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
    NSDictionary *songInfo = @{
        MPMediaItemPropertyTitle: title,
        MPMediaItemPropertyArtist: artist
    };
    center.nowPlayingInfo = songInfo;
    

    Since I am streaming, I do not have duration info upon starting the playback. When I get “ready” signal from the stream, I update the duration that shows up correctly on my Apple TV:

    MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
    NSMutableDictionary *playingInfo = [NSMutableDictionary dictionaryWithDictionary:center.nowPlayingInfo];
    [playingInfo setObject:[NSNumber numberWithFloat:length] forKey:MPMediaItemPropertyPlaybackDuration];
    center.nowPlayingInfo = playingInfo;
    

    I can also seek with this technique when the user seeks the track:

    [playingInfo setObject:[NSNumber numberWithFloat:length * targetProgress] forKey:MPNowPlayingInfoPropertyElapsedPlaybackTime];
    

    The one thing I can NOT figure out is, how to pause the playhead on my Apple TV. When user taps pause in my UI, I am trying to do something like:

    MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
    NSMutableDictionary *playingInfo = [NSMutableDictionary dictionaryWithDictionary:center.nowPlayingInfo];        
    [playingInfo setObject:[NSNumber numberWithFloat:0.0f] forKey:MPNowPlayingInfoPropertyPlaybackRate];            
    center.nowPlayingInfo = playingInfo;
    

    Instead of pausing, this seeks the playhead back to zero and keeps advancing it.

    How do I get the playhead to pause correctly in my Apple TV UI?

    • Roman Temchenko
      Roman Temchenko almost 12 years
      Did you try just to pause your AVPlayer?
    • Jaanus
      Jaanus almost 12 years
      @RomanTemchenko yes, when the user invokes pause UI control on device, then in addition to the infocenter experiments, I do [player pause]; where player is an AVPlayer instance. It has no effect in Apple TV UI. The audio actually stops and resumes as expected, but the playback progress has the issues that I describe.
    • David Morton
      David Morton almost 12 years
      I could never get it to pause correctly, so instead, I set the duration, rate and position to zero. This had the effect of simply removing the progress bar for the time completely, which was good enough for my purposes.
    • Aaron Brager
      Aaron Brager over 11 years
      A playback rate of 0 is not a "rate". I'm not sure if it will work, but have you tried something like [playingInfo setObject:[NSNumber numberWithFloat:0.000001f] forKey:MPNowPlayingInfoPropertyPlaybackRate];?
    • Aaron Brager
      Aaron Brager over 11 years
      (That is, move the playhead verrrrry slowly.) If it works, you could use an NSTimer to reset the MPNowPlayingInfoPropertyElapsedPlaybackTime periodically while it's paused.
  • Clement Prem
    Clement Prem almost 10 years
    shouldn't it be MPNowPlayingInfoPropertyElapsedPlaybackTime instead of MPNowPlayingInfoPropertyPlaybackRate??
  • Pedro Lorente
    Pedro Lorente over 9 years
    shouldn't it be player.currentPlaybackTime instead of player.currentTrackTime or am I wrong?
  • Damien Romito
    Damien Romito over 9 years
    Yes @Pedro, it's depend of the name of you property
  • hamsternik
    hamsternik over 5 years
    this solution setups elapsed time to zero at the lock screen player, so doesn't work at all