How to get an error description when playback fails on MPMoviePlayerController

左心房为你撑大大i 提交于 2019-12-28 15:21:08

问题


I want to show an UIAlert if the Video-Play fails. So i registered the MPMoviePlayerPlaybackDidFinishNotification for my Movie Player:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myMovieFinishedCallback:) name:MPMoviePlayerPlaybackDidFinishNotification object:self.moviePlayer];

In my myMovieFinishedCallback: I check if in the User Info Dictionary is a Object named error. On my real device I don't get this error (on no network error, 404 error for file). On the iPhone Simulator I receive the error.

How can I properly check the reasoning when I receive the MPMoviePlayerPlaybackDidFinishNotification?


回答1:


Unfortunately, MPMoviePlayerController (up until but not including iOS 4.3) has no verbose identification of problems from what is available from the documentation. It simply returns MPMovieFinishReasonPlaybackError in case of any problem within the UserInfo of that MPMoviePlayerPlaybackDidFinishNotification.

With iOS 4.3 we finally got the errorLog and accessLog properties containing extended and pretty helpful information. See MPMoviePlayerController Reference.

With iOS 5.0 there is an error key coming with that notification also on device builds and not just within the simulator. That error is an instance of NSError and supplies very helpful information. Unfortunately that has not been documented by Apple, hence it may change at any release of iOS. Additionally, there seems to be no explanation on the given error-codes. For example an HTTP-Status:404 would result into an error-code -1100 within the given error instance. However, this would be an example of how to handle this notification in the most proper way.

[[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(handleMPMoviePlayerPlaybackDidFinish:)
                                            name:MPMoviePlayerPlaybackDidFinishNotification
                                          object:nil];

That would be a proper notification handler:

- (void)handleMPMoviePlayerPlaybackDidFinish:(NSNotification *)notification
{
    NSDictionary *notificationUserInfo = [notification userInfo];
    NSNumber *resultValue = [notificationUserInfo objectForKey:MPMoviePlayerPlaybackDidFinishReasonUserInfoKey];
    MPMovieFinishReason reason = [resultValue intValue];
    if (reason == MPMovieFinishReasonPlaybackError)
    {
        NSError *mediaPlayerError = [notificationUserInfo objectForKey:@"error"];
        if (mediaPlayerError) 
        {
            NSLog(@"playback failed with error description: %@", [mediaPlayerError localizedDescription]);
        }
        else
        {
            NSLog(@"playback failed without any given reason");
        }
    }
}

Last but not least, do not forget to remove that notification handler from the default center when releasing the instance of the object you are handling it within.

[[NSNotificationCenter defaultCenter] removeObserver:self
                                                name:MPMoviePlayerPlaybackDidFinishNotification
                                              object:nil];



回答2:


I had the same problem. althought i was registering the MPMoviePlayerLoadStateDidChangeNotification callback function and getting the error from the userInfo variable it was not showing the error. I spent a lot of time searching through forums and after playing around with the code i realized what the problem was.

First you need to register the callback function:

 // Register that the did finish notification (movie stopped)
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myMovieFinishedCallback:) name:MPMoviePlayerPlaybackDidFinishNotification object:self.moviePlayer];

Within the MovieFinished callback function you will need:

NSDictionary *notice = [paramNotification userInfo];

if (notice != nil)
{
    NSError *errorInfo = [notice objectForKey:@"error"];

    if ( errorInfo != nil ) {
        UIAlertView *notice = [[UIAlertView alloc] initWithTitle:@"Error" message:[errorInfo localizedDescription] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];   
        [notice show];
        [notice release];            
    }
}

This code will show any error related to the moviecontroller. So.. what was the problem in my code?.. I was using the [moviecontroller play] method in the wrong places, so check that in yours.

Good luck!




回答3:


You can look at the value behind the userinfo dictionary's MPMoviePlayerPlaybackDidFinishReasonUserInfoKey. If the value is MPMovieFinishReasonPlaybackError, you can assume that some stuff went wrong. This method is pretty durn dependable.



来源:https://stackoverflow.com/questions/5352870/how-to-get-an-error-description-when-playback-fails-on-mpmovieplayercontroller

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!