The audiosession tag has no wiki summary.
20
votes
1answer
994 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 ...
7
votes
4answers
1k views
PlaySystemSound with mute switch on
I know, I have to set the AudioSession to the 'playback' category, which allows audio even when the mute switch is on. This is what I do, but sound still gets muted when switch is on.
UInt32 ...
6
votes
5answers
911 views
What kind of routes could I get back from kAudioSessionProperty_AudioRoute property?
Apple guy tried to be funny and wrote in the docs:
("Headphone," "Speaker," etc.)
What kind of return values are possible in reality?
3
votes
1answer
112 views
Playing music when application is in background with kAudioSessionCategory_SoloAmbientSound
I want to play music when my application is in the background, so I've set
"audio background mode"
in my app's info.plist.
I want to set the audiosession's category to ...
3
votes
0answers
178 views
Return volume control to iOS device ringer after playback ends
I have an audio app that uses the Media Playback audio session category to allow background audio. Once my audio session is initialized, the hardware volume buttons on the iOS device control the ...
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 ...
2
votes
1answer
76 views
iphone app: how to deactivate and activate ipod app
my voip app is configured to kAudioSessionCategory_PlayAndRecord category and kAudioSessionProperty_OverrideCategoryMixWithOthers audio session property.
During voip call, when voice playback and ...
1
vote
1answer
64 views
how to find out if audio session is active in iOS
I'm using AudioSessionSetActive(true) and AudioSessionSetActive(false) for setting the AudioSession to true or false in my iOS app.
At any point, I want to find out whether the session is active or ...
1
vote
1answer
156 views
AudioSession Settings for RemoteIO to play nice with iPod
As I previously found here.
If you start running an AVAssetReader while using a Remote I/O callback to play audio, starting the AVAssetReader will block the Remote I/O callback unless you allow iPod ...
1
vote
1answer
257 views
iOS: Is this an audio-session simulator bug? keywords: kAudioSessionProperty_AudioRoute kAudioSessionUnsupportedPropertyError
can someone confirm whether this is indeed a bug? ( If so I will go off and file it with Apple ).
attempting to fetch kAudioSessionProperty_AudioRoute is returning error code ...
1
vote
2answers
529 views
How do I handle other audio playing, in light of multitasking, in iOS?
In the Audio Session Cookbook there is a section on "Checking if Other Audio is Playing During App Launch".
I'm using MonoTouch (but feel free to give an Objective-C answer, the API is the same), so ...
1
vote
1answer
815 views
How do you use AVAudioPlayer to play music while in the background?
I currently use AVAudioPlayer to play music while in the foreground, but when I press the home button my application goes to the background and the music stops. I set the category for my ...
1
vote
1answer
798 views
AudioQueue code from SpeakHere fails on iPad
I've using the SpeakHere audio classes in an App I'm creating that must Play & Record simultaneously.
I'm using the newest SDK with a 3.2 device target in a universal app build (targeting iPad ...
1
vote
1answer
233 views
Is AudioSession actually the same thing as OpenAL?
Is AudioSession actually the same thing as OpenAL?
0
votes
0answers
28 views
MPMoviePlayerController is not responding to device volume controls
I'm working on a game that during the title sequence plays a video in the background using MPMoviePlayerController. I overlay my game controls over this (just a few textured UIButtons).
The video ...
0
votes
0answers
46 views
OpenAL playback while playing music using MPMusicPlayerController
I play sound effect using OpenAL in my application, but when I start to play music using MPMusicPlayerController, the OpenAL stoped and do not work any longer.
I have tried to use code below:
...
0
votes
1answer
117 views
AVAudioPlayer, using AmbientSound session, is not playing when app is in background
If this is in the apple doc then I've not been able to find it - hoping someone can help:
My app plays occasional short audio clips - I want the audio to mix in with audio playing from other apps in ...
0
votes
0answers
31 views
How to duck ipod music only during playback?
I'm implementing an iphone app that plays sounds from time to time. I wanted it to duck any possible music running in the ipod.
I've looked into the Audio Sessions Programing Guide and this seems ...
0
votes
1answer
160 views
AudioSession input from bluetooth output to line out or speaker
Once an audio session has been set up the following code allows bluetooth input.
UInt32 allowBluetoothInput = 1;
AudioSessionSetProperty (kAudioSessionProperty_OverrideCategoryEnableBluetoothInput, ...
0
votes
1answer
108 views
How do I make FMOD for iPhone sound not pause when iPhone locks?
I am using FMOD for iPhone to generate a tone and play it, but when the iPhone locks the sound pauses. This is not the desired behavior, and only recently popped up. I hadn't tested it in awhile, ...
0
votes
0answers
62 views
Record stopped then keyboard no sound iphone
I observer the notification of UIApplicationWillResignActiveNotification,then stop the recorder,then keyboard no sound.
who can help me?
Thank you!!!!!
[[NSNotificationCenter defaultCenter] ...
0
votes
0answers
112 views
Audioroute override using ipod music in high volume produce noice in backgroung
XThrowIfError(AudioSessionInitialize(NULL, NULL, rioInterruptionListener, self), "couldn't initialize audio session");
UInt32 audioCategory = kAudioSessionCategory_PlayAndRecord;
...
0
votes
0answers
95 views
iOS / AudioSessions: Route audio IN through the INTERNAL MIC when EXTERNAL headset mic is present?
As it says on the can really:
Can I route audio IN through the INTERNAL MIC when an EXTERNAL headset mic is present?
If so, how?
EDIT:
I found this:
...
0
votes
0answers
355 views
Is it possible to force an AVAudioSession to output to the headphone jack even if an HDMI accessory is connected?
Is it possible to force audio through the headphone jack even if an HDMI adatper is connected?
I see that iOS 5.0 now has constants for multiple Audio Routes:
const CFStringRef ...
0
votes
0answers
155 views
Performance Issue with background mp3 playback (AVAudioSessionCategorySoloAmbient) in my iOS game
I have a bad performance issue with my iPhone game Tiny Wings which i try to solve since some weeks. The game is slightly jittering all the time which is very strange because the "OpenGL ES Driver" ...
0
votes
1answer
128 views
Knowing when headphones are connected to the 3.5 mm jack works only if they weren't connected before the app started
I got this code to tell if the headphones are connected or not:
This in viewDidLoad:
AudioSessionAddPropertyListener(kAudioSessionProperty_AudioRouteChange, audioSessionPropertyListener, nil);
...
0
votes
1answer
404 views
unable to get speech recognition when using open ears with movie player
In my app i am using Open ears as my audio engine.I am using movie player to play the movie corresponding to the word i m speaking using open ears.But everytime when my first movie is loaded then my ...
0
votes
0answers
465 views
Audio Session Issue-Playback Category-Duck Property
I have read audio session cookbook, all audio session guides on apple website and several other internet websites but they all are very confusing and complicated. There is no good tutorial and no ...
0
votes
1answer
371 views
iPhone setting sound volume for playing sounds for app only
i currently wonder how to
a) Play a sound next to iPod/Other music sources
b) beeing able to control the volume of that played sound (only)
c) **important** both combined!!
d) all of it also on ...
0
votes
1answer
132 views
How to listen to that property?
@constant kAudioSessionProperty_AudioInputAvailable
A UInt32 with a value other than zero when audio input is available.
Use this property, rather than ...