Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get an audio file playing in my iOS app. This is my current code

NSString *soundFilePath = [NSString stringWithFormat:@"%@/test.m4a", [[NSBundle mainBundle] resourcePath]];

NSLog(@"%@",soundFilePath);
NSURL *fileURL = [[NSURL alloc] initFileURLWithPath: soundFilePath];

audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:nil];
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
[[AVAudioSession sharedInstance] setActive: YES error: nil];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];

[audioPlayer setVolume:1.0];

audioPlayer.delegate = self;

[audioPlayer stop];
[audioPlayer setCurrentTime:0];
[audioPlayer play];

I've being checking a bunch of other posts but they all generally do the same thing. I'm not getting an error, but I don't hear any audio playing on the simulator or device.

This is the path I get for the audio file on the simulator

/Users/username/Library/Application Support/iPhone Simulator/5.1/Applications/long-numbered-thing/BookAdventure.app/test.m4a

Any help is appreciated!

share|improve this question
Try another audio file, its possible that test.m4a might be corrupted, which is why it isn't playing. – Jeremy1026 Jul 17 '12 at 15:36
Does audioPlayer point to a valid object? Is the mute switch on? Device volume turned up? – Caleb Jul 17 '12 at 15:38
I'm pretty sure it's a valid object. Is there a way to tell if the path is correct? I assumed it would throw an error if it was a null object or invalid path.. The mute switch is not on and device volume is turned up @Jeremy1026 the file plays normally in xCode and on my MBP so I think it's fine – Lagoo87 Jul 17 '12 at 16:37
Are you using ARC in this project? – Jonathan Grynspan Jul 17 '12 at 17:07
Yes, I am using ARC – Lagoo87 Jul 17 '12 at 18:49

1 Answer

up vote 3 down vote accepted

Maybe you should try using the NSBundle method "pathForResource:ofType:" method to create the path to the file.

The following code should successfully play an audio file. I have only used it with an mp3, but I imagine it should also work with m4a. If this code does not work, you could try changing the format of the audio file. For this code, the audio file is located in the main project directory.

/* Use this code to play an audio file */
NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"m4a"];
NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];

AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];
player.numberOfLoops = -1; //Infinite

[player play];

EDIT

Ok, so try this:

NSString *soundFilePath = [NSString stringWithFormat:@"%@/test.m4a", [[NSBundle mainBundle] resourcePath]];
NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];

AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];
player.numberOfLoops = -1; //Infinite

[player play];

Also, make sure you do the proper imports:

#import <AudioToolbox/AudioToolbox.h>
#import <AVFoundation/AVFoundation.h>
share|improve this answer
when I do that, my soundFilePath ends up being (null)...? My file is in the main project directory. In xCode its under the group "Audio", which I don't think matters. – Lagoo87 Jul 17 '12 at 18:52
You could try my code, but using your path creation method (eg NSString *soundFilePath = [NSString stringWithFormat:@"%@/test.m4a", [[NSBundle mainBundle] resourcePath]];) instead. Also, what does an NSLog of your soundFilePath print? – bddicken Jul 17 '12 at 19:58
sound file path is printing (null) every time When I use this other path creation method, my soundFilePath shows "file://localhost/Users/userName/Library/Application%20Support/iPhone%20Simulato‌​r/5.1/Applications/long-number-thing-here/BookAdventure.app/test.m4a" – Lagoo87 Jul 17 '12 at 20:04
I added another slightly modified code snippet to my response, try that. – bddicken Jul 17 '12 at 20:13
Had the proper imports already. Weird, .mp3 works but .m4a isn't working. Not sure why, but just happy I got some audio playing! – Lagoo87 Jul 17 '12 at 20:24
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.