Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

AVAudioPlayer refuses to give in!

architectpianistarchitectpianist Posts: 128Registered Users
Hi,
This chunk of code has been evading me for a while now. It's supposed to play a 3-minute song when a view is loaded, but the music doesn't play. Here's the code:
	NSString *path = [[NSBundle mainBundle] pathForResource:@\"MyBackgroundMusic\" ofType:@\"wav\"];
NSData *data = [[NSData alloc] initWithContentsOfFile:path]; //temporary (for the below line)
NSLog(@\"Data: %@\", data); //SKIPS!!!
NSError *err;
NSLog(@\"Path = %@\", path);
player = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:&err];
if (player == nil)
NSLog(@\"%@\", [err description]);
else
{
[player prepareToPlay];
player.numberOfLoops = -1;
[player play];
NSLog(@\"Duration: %10.4f Current Time: %10.4f Playing? %i\", player.duration, player.currentTime, player.playing);
}
The output is:
2011-04-02 16:58:36.602 mathematics[10699:207] Path = /Users/architectpianist/Library/Application Support/iPhone Simulator/4.2/Applications/33B3F7B0-74ED-4DD1-8965-BDF0CD957C66/mathematics.app/MyBackgroundMusic.wav
2011-04-02 16:58:48.590 mathematics[10699:207] Duration: 173.7525 Current Time: 0.0000 Playing? 1

I'm running this on the simulator, and yes, my computer volume is up :D. Any idea what's causing it to not play?
Sign In or Register to comment.