AudioUnits are plug-ins for Apple's CoreAudio framework which generate or process audio streams.

learn more… | top users | synonyms

0
votes
0answers
12 views

Setting an AudioUnit's SampleRate to 16000 Hz without using an AudioSession

I would like to request a 16k Hz sample rate without using an audio session, but have thus far not been successful. Querying the hardware via AudioUnitGetProperty / SampleRate before configuring the ...
0
votes
0answers
21 views

Audio Unit background conflict

I have an audio analysis app using Audio Units that works perfectly when the app is run in isolation. However, if there are other audio apps running in the background AudioUnitRender returns a -50 ...
-2
votes
0answers
21 views

How to kill a thread

I'm developing a piano application, to play sounds I'm using this neat method I found online: -(void)play :(NSString *) fName : (NSString *) ext { AUGraph _AUGraph; OSStatus err; ...
0
votes
0answers
30 views

iOS : How to Play a Ipod Library songs using AudioUnit?

I am experienced with problem to play a songs from ipod library using AudioUnit. When a song selected from ipod library, it automatically play in AudioUnit immediately.
0
votes
0answers
18 views

Specifying number of frames to process in audiounit render callback on iOS

I setup the audio unit render callback: AURenderCallbackStruct input; input.inputProc = RenderAudioBuffer; input.inputProcRefCon = self; err = AudioUnitSetProperty(audioPlaybackUnit, ...
0
votes
0answers
14 views

can an audio unit's inputcallback provide ima4 compressed data

I have loading an Ima4 databuffer and would like to play it. I have an inputcallback setup for linear pcm but logically this doesnt work with ima4 data. Is it possible to write an inputcallback which ...
0
votes
0answers
21 views

Coordinating AudioUnit play: why is NSLog needed?

This is really crazy. I'm using an AudioUnit to play a series of tones (with rests/silences between). Maybe there's a problem with threading? My code 'works,' but without the NSLog, only the first ...
0
votes
0answers
33 views

iOS: AudioSession properties being reset when user closes & reopens app?

I'm using AudioUnit for access to RemoteIO for high-performance audio. My app decodes signals which are embedded in audio received from the microphone. For accuracy, I need to keep audio filtering ...
0
votes
0answers
44 views

the amazing audio engine how to apply filters to microphone input

Im trying to make karaoke app that records the background music from file and the microphone. I also want to add filter effects to the microphone input. i can do everything stated above using the ...
0
votes
0answers
14 views

How to debug AURemoteIO::IOThread exception?

I'm working with audio units and at some point in my program, if I add an exception breakpoint, I can catch a CoreAudio exception from the IOThread. This is what I see: Now, there is really not ...
0
votes
1answer
32 views

multiple effect-adjusted sounds through audio units on IOS?

If I have 5 sounds which all use a varispeed audio unit which different parameters, do I have to use an audio unit per set of parameters. Important to note with diffirent parameters I mean I cannot ...
0
votes
1answer
25 views

meaning of OSStatus -10861

I am trying to implement an audio unit and when I connect it into my AUGraph I get OSStatus result -10861. But I cannot find what this value means. Anyone know where this is documented or what it is.
0
votes
2answers
39 views

how to set scope and element when using audio unit

I am developing a karaoke software.and intend to mix the audio by using audiounit,but I don't know how to set the scope and element?for example: UInt32 busCount = 2; OSStatus result = ...
0
votes
0answers
51 views

IOS Audio units

I am trying to implement a low pass filter in core audio on IOS but when I use the code below an error is generated stating "The operation could not be completed", which is very undescriptive of the ...
3
votes
0answers
64 views

iOS 3D mixer works in iOS 5+ but not in iOS 4.3

I've set up a kAudioUnitSubType_AU3DMixerEmbedded as part of a functional AUGraph. I've set the output ASBD of the mixer to the following: Sample Rate: 44100 Format ID: ...
0
votes
0answers
47 views

iOS : aurioTouch from speaker

aurioTouch apple sample code display oscillo graph from mic input. I would like to change input source to speaker (typically use aurioTouch from intern sound like mp3). Am I right to see around ...
0
votes
1answer
38 views

OpenAL and Audio Unit clashing

I have an audio unit with a callback from the mix input. This works correctly and records fine. The moment I open another view that uses ObjectAL (OpenAL), going back to the ViewController that ...
0
votes
0answers
11 views

how to set Scopes and Elements of AudioUnit

I have read the Apple document "AudioUnit Hosting Guide",but can't understand what's the meaning of "Scope and Element" and how to use,it seems kind of complicated.is there any other simple ...
0
votes
1answer
22 views

How to know that an AUSampler is playing?

Any way to know if an AUSampler contained in an AUGraph is producing any sound ? Thanks !
0
votes
1answer
85 views

iOS - Accessing generated signal from Audio Unit render callback

I have an iOS/Objective-C program that uses a single audio unit to play a generated signal when a button is pressed. I'd like to add functionality such that: a) When the button is first pressed, a ...
0
votes
0answers
65 views

Why does AudioOutputUnitStart fail when not beginReceivingRemoteControlEvents?

I'm using AudioUnit to play audio. When interruption occurs (Ex: alarm popups), I handle like this Check for kAudioSessionBeginInterruption, do AudioSessionSetActive(false); ...
23
votes
1answer
656 views

iOS app crashes when headphone is plugged or unplugged

I'm running a SIP audio streaming app on iOS 6.1.3 iPad2 and new iPad. I start my app on my iPad (nothing plugged in). Audio works. I plug in the headphones. The app crashes: malloc: error for object ...
0
votes
0answers
35 views

Xcode issues a “could not find object file” warning for all the audio units each time i debug core audio

Really annoyingly, Xcode (GDB) issues a "Could not find object file" warning for all the object files of all the third party audio units that i have in my components directory every time I start core ...
0
votes
0answers
75 views

iOS Sounds with AudioUnit works on simulator, not on real device iPad

I am using kAudioUnitType_FormatConverter nodes in my AUGraph. The nodes have such description: AudioComponentDescription varispeedUnitDescription; varispeedUnitDescription.componentType = ...
1
vote
1answer
71 views

How to add kAudioUnitSubType_Varispeed audiounit to AUGraph in iOS6

I’m studying AudioUnits in iOS and trying to implement such graph: ------------------- ----------------- | | | | -->| FormatConverter | --->| bus ...
0
votes
1answer
143 views

Core Audio: kAudioOutputUnitProperty_SetInputCallback on a non-remoteIO unit

I'm new to Core Audio so I might not see something obvious… My aim is to process previously recorded audio signals. However, those signals should be filtered first. I don't need to play any audio. I ...
0
votes
1answer
21 views

How to build to a protected folder in xcode on 10.7

im trying to build an audio unit synth and I've got it to compile but and it works so far but I want to debug it properly by setting my daw as a debug exexuble. The problem is that the daw only loads ...
0
votes
1answer
80 views

Using iOS Reverb effect

kAudioUnitSubType_Reverb2 effect don't work in my Audio Unit graph. When I exclude its node from graph everything works fine. I tried to add converters between previous node and reverb node and after ...
0
votes
1answer
109 views

How to control the band equalizer

Now I have some band: self.eqFrequencies= @[ @32, @500, @1000, @2000, @4000, @8000, @16000 ]; I want to do it like: I know that kAudioUnitSubType_NBandEQ:(A generalized N-band graphic EQ ...
3
votes
1answer
149 views

reacquisition of microphone in background in iOS

I am trying to acquire microphone while the app is in the background. I am using audio unit technology and able to record audio while in background. But once my AudioSession gets interrupted, I am ...
0
votes
0answers
124 views

Unable to see red status bar when recording in background using AVAudioRecorder

I am trying to record in background. I see a red bar in background when I use audiounit technology. But, I don't see a red bar when I use AV Foundation framework (AVAudioRecorder). I have "App plays ...
0
votes
1answer
52 views

Exclusive access to AudioUnit in iOS

I was thinking is it possible to get exclusive access to AudioUnit record (end possibly playback) device, to assure that any other proccess will not gain access to it while my is working (eventually ...
2
votes
1answer
75 views

Trying to figure out Core Audio's NBandEQ

So I am trying to figure out the ill documented NBandEQ that Apple added in iOS 5. I am able to get it to work great for anything under 16 bands but I want more :) What happens is that if I make it a ...
0
votes
1answer
36 views

configure Mac OS X AudioUnit to provide SignedInteger samples

I am writing a Mac OS X application to capture some audio through the microphone with echo cancellation. I am creating an AudioUnit of type VoiceProcessingIO. I want to output the audio as Signed ...
7
votes
1answer
264 views

Can't continue reading from AVAssetReaderOutput after going to background and back to foreground

I'm using an AVAssetReaderOutput to read samples from an AVAsset, do some processing on them, and play the result using a RemoteIO AU. The problem is that after calling AudioOutputUnitStop to pause ...
0
votes
1answer
45 views

Detect speaker/headset using AudioUnit on Mac OS X

Using AudioUnit and kAudioUnitSubType_HALOutput how do I detect if the output is Speaker or Headset?
1
vote
1answer
96 views

Encoding recording from AudioUnit for sending over NSOutputStream in iOs

I am trying to stream some recording from the mic in my iPhone in real-time over NSSocket. I have callbacks for recording and playback. I am trying to read directly from the buffer using following ...
0
votes
1answer
188 views

CoreAudio: Ausampler Unit polyphony

I'm currently trying to use the Ausampler Unit efficiently. I used the code from apple's sample: ...
1
vote
0answers
57 views

How to mix sounds from different audio units in iOS?

I have an application which has VoIP and at the same time it renders customs sounds. The VoIP audio unit is set as follows: au_description.componentType = kAudioUnitType_Output; ...
0
votes
1answer
36 views

Why isn't AUNetSend available on iOS? (Or any alternative suggestions)

I just tried AUNetSend and AUNetReceive on two Macs using garageband. The delay was exceptionally low! I am very disappointed to find that AUNetSend is not available on iOS, however. I'm trying to ...
3
votes
2answers
171 views

objective-c record audio session output

I am writing an app that generates music. I am using OpenAL to: modify gain; modify pitch; mix audio; and play the resulting audio. I now need to record the audio as it is being played. I understand ...
0
votes
1answer
98 views

How to write Output of AUGraph to an External AudioFile of WAV or AIF formats?

In my iOS app i am playing a MIDI file using Music Player & Music Sequence. And i'm getting AUGraph here by calling "MusicSequenceGetAUGraph" method of the Music Sequence. Now i want to save the ...
1
vote
1answer
166 views

Possible Output Sampling Rates in Audio Units

I am trying to set different sampling rates (like 32kHz, 24kHz etc..) to the input stream of Remote I/O audio unit. But the output is always played at one of these sampling rates - 22.05kHz, 33.1kHz, ...
3
votes
1answer
181 views

MIDI synthesis in iOS misbehaving WRT pitch bending: LSB ignored

Either there's a serious bug in Apple's MIDI synthesis code, or I'm doing something wrong. Here's my understanding of it. When you send a pitch bend MIDI command, the range of the bend is -8192 to ...
4
votes
2answers
92 views

Is it possible to list all RemoteIO audio units currently in the application?

I'd like to add an output render callback via AudioUnitAddRenderNotify onto the currently active RemoteIO unit that's outputting audio to the speakers. I don't have access to the actual RemoteIO ...
0
votes
1answer
85 views

iOS: EXC_BAD_ACCESS when trying to get audioframe value

I am having a little trouble getting Michael's code to work. Below you will se my implementation, i am trying to get it running on iOS 6.1 but I am getting an EXC_BAD_ACCESS at: AudioBuffer ...
0
votes
0answers
38 views

Xcode project is exporting extra .component and .bundle files

My project settings are set to export a "REQ_CocoaViewFactory.bundle" file and a "REQ.component file". When I build my project those 2 files are created in my /Users/-/Library/Audio/Plug-Ins folder. ...
0
votes
1answer
148 views

Audio Unit to capture sound from mic, add reverb ,then send to speaker

Sorry to bother again. I used the audio graph processing method to play the mic-in and add effect to the sound to the speaker. When I use the AUGraph_1 : RIO_input->Converter-> AUiPodE->RIO_output, ...
11
votes
2answers
480 views

How to strip Objective-C symbols from OS X binary?

OK, I know there have been other posts about how you can't actually strip Objective-C symbols from an OS X binary because they're necessary for Obj-C to work at all, but my case is a bit different. I ...
0
votes
0answers
143 views

Add Effect to Mic input and play to speaker output using Audio Unit

I am in the practice of Audio Unit API. I've added the kAudioUnitType_Effect to a sound buffer offline and play the sound with reverb sucessfully , as demo in the official demo code: ...

1 2 3 4 5 7