I'm working on an iOS application that needs to play some sounds using the AVFoundation framework. The workspace structure in Xcode 4 contains two projects:

  • Workspace
    • The application itself (main project)
    • A utility library

After building the utility library, it results in a static library which is used in the main application as a framework.

So, when trying to play a sound inside the main application by using the code below, it works as expected.

NSString *path = [NSString stringWithFormat:@"%@/sound.mp3", [[NSBundle mainBundle] resourcePath]];
NSURL *url = [NSURL fileURLWithPath:path];
NSError *error = nil;
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
[audioPlayer play];

In contrast, when trying to play exactly the same sound (or any other) inside the utility library using the same code as above, no sound is played at all, even though error is nil and the audioPlayer property values are the right ones (number of channels, duration).

I've made sure the AVFoundation framework is in both projects.

Also, my class uses the AVAudioPlayerDelegate protocol and implements these two methods:

- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag;
- (void)audioPlayerDecodeErrorDidOccur:(AVAudioPlayer *)player error:(NSError *)error;

None of these methods is called after trying to play the sound.

If I use the AudioToolbox framework instead, it plays the sound, but I'm interested in using AVFoundation for several reasons.

Any idea of what is going on? Am I missing something about AVFoundation? Could it be related to using AVAudioPlayer from inside a static library?

Thanks in advance.

link|improve this question

75% accept rate
Can you tell us what the error variable outputs? The one from here AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error]; – Maudicus Nov 4 '11 at 23:27
@Maudicus, as I said, error is nil after playing the sound. I found the solution and it's related to something I didn't mention and didn't think about: I'm compiling with ARC. ARC inserts a release call to the audio player, so it's deallocated right after leaving the method where it is created, as explained here – msoler Nov 4 '11 at 23:35
I'm sorry I had copied your code and it worked. Missed your statement about error being nil. I'm glad it's resolved – Maudicus Nov 4 '11 at 23:51
@Maudicus No problem. :) Thanks anyway! – msoler Nov 5 '11 at 0:15
feedback

3 Answers

up vote 2 down vote accepted

I found the solution and it's related to something I didn't mention and didn't think about: I'm compiling with ARC. ARC inserts a release call to the audio player, so it's deallocated right after leaving the method where it is created.

In my case, I just created an AVAudioPlayer attribute to the class that deals with sounds and in this case, it is not released anymore by ARC. Well, at least, it's not released until the instance of this class is released.

link|improve this answer
feedback

Have you configured the AVAudioSession?

I had a similar problem and fixed it using something like this:

AVAudioSession *audioSession = [AVAudioSession sharedInstance];
[audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:NULL];

or

[audioSession setCategory:AVAudioSessionCategoryPlayback error:NULL];

Hope it helps.

link|improve this answer
I already answered Madicus about this, but I didn't post it as a direct answer to my question, because I couldn't (probably because StackOverflow doesn't allow auto-answering during the first hours/days). The official answer is here now. :) Thanks anyway! – msoler Dec 7 '11 at 13:11
feedback

Yes, absolutely; ARC was the reason with my code as well.

I introduced a property:

@property (strong, nonatomic) AVAudioPlayer *audioPlayer;

and that made everything work out fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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