Tagged Questions
The iPhone SDK’s AVFoundation framework includes AVAudioPlayer, an easy, feature rich, Objective-C based way of playing audio files.
20
votes
1answer
916 views
MPMoviePlayerController and AVAudioPlayer audio mixing glitch
I'm developing an interactive storybook type application for the iPhone and I've recently encountered a frustrating bug concerning audio mixing on the device.
Firstly, I setup an audio session. I set ...
16
votes
4answers
5k views
What do you use to play sound in iPhone games?
I have a performance-intensive iPhone game I would like to add sounds to. There seem to be about three main choices: (1) AVAudioPlayer, (2) Audio Queues and (3) OpenAL. I’d hate to write pages of ...
12
votes
5answers
2k views
Detecting the iPhone's Ring / Silent / Mute switch using AVAudioPlayer not working?
I've tried using these methods in an attempt to detect that the Ring/Silent switch is active or not:
How to programmatically sense the iPhone mute switch?
AVAudioSession category not working as ...
12
votes
2answers
5k views
Entering background on iOS4 to play audio
The documentation is rather poorly written when talking about playing audio in the background. It gives the impression that all you have to do to continue playing the audio that you are currently ...
10
votes
3answers
2k views
Lower iPod volume to play app sound (like the native SMS app)
I've made an iPhone app to be used while exercising. It plays a bell tone to indicate that you (the user) should switch from one step of your exercise routine to the next. I've designed the app so ...
10
votes
6answers
5k views
Slow start for AVAudioPlayer the first time a sound is played
I'm trying to eliminate startup lag when playing a (very short -- less than 2 seconds) audio file via AVAudioPlayer on the iPhone.
First, the code:
NSString *audioFile = [NSString ...
9
votes
2answers
202 views
Audio still plays when iPhone volume is turned all the way down to silent
The way I am currently playing background music and other sounds in my app is behaving very strangely:
Turn the background music off, and the other sounds played are MUCH louder.
With the background ...
8
votes
2answers
1k views
How to customize MPVolumeView?
I have tried many methods to implement a regular UISlider and control the device volume, but it's all Native-C functions which results in many untraceable bugs.
I tried the MPVolumeView it works ...
7
votes
4answers
5k views
AVAudioPlayer fade volume out
I have an AVAudioPlayer playing some audio (duh!)
The audio is initiated when the user presses a button.
When they release it I want the audio to fade out.
I am using Interface builder...so I am ...
6
votes
2answers
391 views
iPhone App: not resuming audio session in AVAudio Player
In my iPhone App I am Playing music using AVAudioPlayer. when my App runs in background that time also it is running for tht I wrote this code
in AppDelegate on
-- application ...
6
votes
3answers
620 views
iPod Volume Level Affects App Volume Level
I am writing an iPad app that uses the "Flite" text-to-speech engine to announce specific events. The Flite engine uses an AVAudioPlayer instance to play the speech audio once it renders. For fun, I ...
6
votes
1answer
2k views
iPhone ios4 - Replacing iPod dock icon whilst playing background audio stream
I've figured out how I can get audio playing in the background on ios4, however I've noticed that some apps also replace the iPod dock icon with their own app icon. (Last.fm & Spotify for ...
6
votes
3answers
4k views
“Cannot find executable for CFBundle/CFPlugIn” error
Cannot find executable for CFBundle/CFPlugIn 0x432bfa0 (not loaded)
Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x432bfa0 (not ...
5
votes
2answers
231 views
How to find the leaky faucet that loads into Malloc 32kb
I have been messing around with Leaks trying to find which function is not being deallocated (I am still new to this) and could really use some experienced insight.
I have this bit of code that seems ...
4
votes
1answer
466 views
AVAudioPlayer stops playing immediately with ARC
I am trying to play an MP3 via AVAudioPlayer which I thought to be fairly simple. Unfortunately, it's not quite working. Here is all I did:
For the sake of testing, I created a new iOS application ...
4
votes
1answer
195 views
AVAudioPlayer Won't Play Repeatedly
I have a relatively simple app that plays a sound using AVAudioPlayer, like this:
NSURL *file3 = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/ball_bounce.aiff", [[NSBundle mainBundle] ...
4
votes
2answers
211 views
Best way to play a sound with an attack / sustain (loop) / decay with AVAudioPlayer
I am having a problem finding resources on playing an attack (start of sound) / sustain (looping sound) / decay (ending of sound) sequence with no transition breaks. Are there any good libraries for ...
4
votes
1answer
183 views
KVO AVAudioPlayer not working
I am trying to observe the "currentTime" property of AVAudioPlayer. But the method isn't even being called... I need it to set the position of a UISlider..
But it's not working. Here's the relevant ...
4
votes
2answers
1k views
How to record and play sound in iPhone app?
I tried using AVAudioSession and AVAudioPlayer to record and play sounds respectively but the sound volume is very low.
I tried putting volume value of AVAudioPlayer to 1.0 and more but didnt help ...
4
votes
2answers
338 views
How to Make and Play A Procedurally Generated Chirp Sound
My goal is to create a "Chirper" class. A chirper should be able to emit a procedurally generated chirp sound. The specific idea is that the chirp must be procedurally generated, not a prerecorded ...
4
votes
2answers
2k views
How to handle error code -43 from NSOSStatusErrorDomain when initializing AVAudioPlayer Object?
I observed strange behavior while working with AVAudioPlayer
Following is the code:
AVAudioPlayer *newPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL: [NSURL fileURLWithPath:[NSString ...
4
votes
4answers
4k views
Is it possible to test iOS4 multitasking/background music playing on the simulator?
I have added the UIBackgroundModes property in Info.plist to have an array entry of "audio" and have added the call to setup the audio session: [session setCategory: AVAudioSessionCategoryPlayback ...
4
votes
5answers
5k views
How to play the iPod Library file in the AVPlayer
I need your help
Please tell me how you taken the ipod library music file in the AVAudioPlayer?
Thanks,
Karthick
4
votes
3answers
5k views
AVAudioPlayer with external URL to *.m4p
My Problem is the following. I got this code and i guess a corrupt NSURL since the AVAudioPlayer is nil after initializing:
NSString *dummyURLString = ...
4
votes
4answers
5k views
AVAudioPlayer memory leak
I'm stuck on some weird memory leak problem related to the AVAudioPlayer and I need help after trying everything that came to mind.
Here is the short description of the problem - code appears right ...
4
votes
2answers
869 views
Problem playing audio after pausing with AVAudioPlayer
I have an issue with my AVAudioPlayer in which if it is paused, I cannot get it to play again. Calling [audioPlayer play] after it is paused returns NO rather than the usual YES.
Any idea what could ...
3
votes
1answer
109 views
AVAudioPlayer prepareToPlay callback in iPhone
Is it possible to know when an AVAudioPlayer is ready after a call to prepareToPlay?
If not, is there any other class that provides this functionality?
I would like to implement something like this:
...
3
votes
2answers
111 views
play mp3 with monotouch
I'm building an application using monotouch. Basically I need to play a mp3 as soon as the application loads.
On the main.cs I added this snippet before pushing the main controller:
AVAudioPlayer ...
3
votes
1answer
117 views
Play one instance of AVAudioPlayer in the background
I have several instances of AVAudioPlayer in my app (in separate classes). I have added multi-tasking capabilities to one instance but all audio now plays in the background. I added the 'App plays ...
3
votes
1answer
166 views
Seek functionality not working in AVAudioPlayer in iPhone App?
I am using below code for that but when I slide the slider it is calling updateTime method but stuck at player.currentTime and not playing further
On single sliding of slider it gets stuck
...
3
votes
3answers
2k views
AVAudioPlayer error loading file
I am trying to use the AVAudioPlayer to play a simple sound and I keep getting this error in the console:
2011-09-02 20:29:07.369 MusicLog[967:10103] Error loading ...
3
votes
2answers
377 views
Play/Pause with the same button AVAudioPlayer
How can I play a sound with an IBAction by pressing on a UIbutton once and pause it by pressing the button again using AVAudioPlayer? Also I want to change the state of that UIButton when the sound is ...
3
votes
3answers
442 views
AVAudioPlayer and AVAudioRecorder: Delegate Methods not Called
My delegate methods audioRecorderDidFinishRecording and audioPlayerDidFinishPlaying are not being called. Those methods should trigger a 'stopanimation` method that stops an animation after recording ...
3
votes
1answer
940 views
AVAudioPlayer and AirPlay - possible?
I'm trying to ascertain whether it's possible to toggle AirPlay support using the AVAudioPlayer class.
From what I have read:
AirPlay is a technology that lets your application stream audio to ...
3
votes
3answers
1k views
How to increase volume of sound recorded using AVAudioRecorder
I am using the link mentioned below to record audio through my iPhone app:
How do I record audio on iPhone with AVAudioRecorder?
When I try to play my recordings using AVAudioPlayer on my device, I ...
3
votes
1answer
458 views
iPhone: Access voice memos programmatically
I'm writing an app that plays some simple voices and sounds using AVAudioPlayer. However, in order to really make the app "killer", it would need to access the users' own voice memos so that they can ...
3
votes
3answers
235 views
Is it possible to play just a part of an mp3 file with AVAudioPlayer? If yes, how?
Hi I have a locally stored 5:00 minutes mp3 files in my iPhone app.
I would like to know if it is possible to play just an interval from that file using AVAudioPlayer after it is readyToPlay, lets ...
3
votes
1answer
1k views
Get album artwork from MP3 file/ID3 tag
I'm trying to get the album artwork from a MP3 file.
In this case I use AVAudioPlayer to play the file.
Here's the code that I thought would get the album artwork:
MPMusicPlayerController ...
3
votes
1answer
469 views
Why do AVAudioPlayer automatically continue playing after applcation comes from background mode?
Why do AVAudioPlayer continue playing after applcation comes from background mode, even if the player had been paused before app went to background?
In common I wonder why AVAudioPlayer automatically ...
3
votes
1answer
347 views
iPhone Sdk Listening for Background Audio
I have an app that plays background music using AVAudioPlayer. The app also has youtube videos in it. When the user taps on the youtube video, I need the background audio to turn off. When they have ...
3
votes
1answer
458 views
AVAudioRecorder / AVAudioPlayer - append recording to file
Is there any way to record onto the end of an audio file? We can't just pause the recording instead of stopping it, because the user needs to be able to come back to the app later and add more audio ...
3
votes
1answer
560 views
How to change volume with MPMusicPlayerController without affecting the device volume
I am using MPMusicPlayerController and AVAudioPlayer simultaneously.
For audio balancing, I have two volume sliders for MPMusicPlayerController and AVAudioPlayer each.
If I mute the MPMusicPlayer ...
3
votes
1answer
293 views
I can't track down this leak. Audio Toolbox
I have gone over a silly amount of forum posts and questions here. while i would love to take this advice: http://www.cocos2d-iphone.org/forum/topic/2003 I suppose i just don't trust 'them' as much as ...
3
votes
1answer
537 views
AVAudioPlayer stop a sound and play it from the beginning
I used the AVAudioPlayer to play a 10 sec wav file and it works fine.
Now I what to stop the wav at the 4th sec and then play it again from the
very 1st sec.
Here is the code I tried:
NSString ...
3
votes
1answer
1k views
Routing iPhone Audio Sound
I have an app which does listen and play sound at the same time. By default, the sound output goes through the earphone. So I use the following code to route it through the speaker:
UInt32 ...
3
votes
1answer
213 views
Handle iPhone interruption in a music application
I've tried the code to avoid the sleep mode interruption. It's working, but now I have a problem with interruptions when a call or sms is coming in to the iPhone. The song in my music application is ...
3
votes
1answer
571 views
AVAudioPlayer with MPMusicPlayerController
I have music playing within my application using a MPMusicPlayerController, using iPodMusicPlayer (also tried applicationMusicPlayer). When I play a sound using AVAudioPlayer my music from my ...
3
votes
1answer
1k views
Volume control using UIslider Iphone?
i am creating a application in which sound is played when a button is pressed and using a UISlider with which volume can be adjusted.Sometimes the volume of sound is too high and sometimes its too low ...
3
votes
4answers
1k views
Play and record sound simultaneously with iPhone SDK?
I'm trying to detect input from the mic and also play sounds, which can be toggled on or off, but are always playing when the mic listener is active.
I've initialized my AVAudioSession in the ...
3
votes
2answers
1k views
AVAudioPlayer Memory Leak - Media Player Framework
I am using AVAudioPlayer object to play an audio. I created an audioPlayer object initially. I play an animation and when ever animation starts I play the audio and pause the audio when the ...