Tagged Questions

3
votes
4answers
2k views

iPhone (SDK 2.2): adusting playback volume while NOT actively playing music w/ AVFoundation?

So I have an app which plays many short sound clips. I need to know when the sounds are finished playing, and I need to use mp3s, so I'm using AVFoundation for the sound playback. When a sound is …
1
vote
2answers
980 views

Setting AVAudioPlayer volume to the user’s ring volume?

I'm having a problem with AVAudioPlayer's volume. I can set theAudio.volume property to 1.0, but I'd rather just play the audio at the volume the user has his iphone ringer set to. Getting rid of …
0
votes
1answer
49 views

What’s the difference between all these audio frameworks?

In the documentation I see several frameworks for audio. All of them seem to be targeted at playing and recording audio. So I wonder what the big differences are between these? Audio Toolbox, Audio …
0
votes
1answer
278 views

dyld: Library not loaded: AVFoundation.framework Reason: image not found

How do I fix this? dyld: Library not loaded: /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation Referenced from: /Users/[...]/Library/Application Support/iPhone …
0
votes
1answer
396 views

Playing an mp3 on IPhone OS 2.2.1

When I run this sample code on a 2nd generation IPod touch with OS version 3.0, it works fine. However when I run it on a 1st generation IPod touch with OS version 2.2.1, it doesn't. I am playing an …
0
votes
2answers
857 views

Xcode iPhone - Adding framework works a little bit

No biggie, but when I add the AVFoundation framework for the iPhone, it turns red for some reason I'm unable to figure out why. The project will not compile unless I add this framework, and if I do, …
0
votes
2answers
402 views

What’s the SIMPLEST way to play a sound clip in an iPhone app?

I want to be able to play a sound clip in an iPhone OS app. I've seen info on both NSSound as well as AVFoundation as being means for getting sound clips played on an iPhone OS device, but I'm still …
0
votes
0answers
231 views

Playing sample file from simulator using avTouch sample code.

I am trying to play the sample sound file in the avTouch sample code from the Apple dev site. I can't move the app to my phone as i am in the enrollment process and don't yet have access to the phone. …
0
votes
1answer
725 views

iPhone Mic volume.

Is there any way to poll the mic input volume with AVFoundation? I have seen the CoreAudio examples like SpeakHere but I really only need the current value. Is CA my only option?