I'm trying to play an MP3
file that is passed to an UIView
from a previous UIView
(stored in a NSURL *fileURL
variable).
I'm initializing an 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 UIButton
, the code i run is:
-(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 UIButton
.
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 I'm guessing is AVPlayerReadyToPlay
.
What can I do to have the playing to work properly the first time i click the play UIButton
?
(ie, how can i make sure the AVPlayer
is not just created, but also ready to play?)