Im (a bit of a noob) trying to play an mp3 file that is passed to a view from the previous view. (stored in the NSURL *fileURL variable)
Im initialising AVPlayer with
player = [AVPlayer playerWithURL:fileURL];
NSLog(@"Player created:%d",player.status);
The NSLog prints "Player created:0", which, i figured, means it is not ready to play yet. When i click the play button, the code i run is this
-(IBAction)playButtonClicked
{
NSLog(@"Clicked Play. MP3:%@",[fileURL absoluteString]);
if(([player status] == AVPlayerStatusReadyToPlay) && !isPlaying)
// if(!isPlaying)
{
[player play];
NSLog(@"Playing:%@ with %d",[fileURL absoluteString], player.status);
isPlaying = YES;
}
else if(isPlaying)
{
[player pause];
NSLog(@"Pausing:%@",[fileURL absoluteString]);
isPlaying = NO;
}
else {
NSLog(@"Error in player??");
}
}
When i run this, i always get "Error in player??" in the console. If i however replace the if condition (that checks if AVPlayer is ready to play) with a simple "if(!isPlaying).......", then the music plays the SECOND TIME i click on the play button. The console log is
Clicked Play. MP3:http://www.nimh.nih.gov/audio/neurogenesis.mp3 Playing:http://www.nimh.nih.gov/audio/neurogenesis.mp3 with 0
Clicked Play. MP3:http://www.nimh.nih.gov/audio/neurogenesis.mp3 Pausing:http://www.nimh.nih.gov/audio/neurogenesis.mp3
Clicked Play. MP3:http://www.nimh.nih.gov/audio/neurogenesis.mp3 2011-03-23 11:06:43.674 Podcasts[2050:207] Playing:http://www.nimh.nih.gov/audio/neurogenesis.mp3 with 1
I see that the SECOND TIME, the player.status seems to hold 1, which im guessing is avPlayerReadyToPlay.
What can i do to have this play to work properly the first time i click the button? (ie, how can i make sure the AVPlayer is not just created, but also ready to play?)