Core Audio is a low-level API for dealing with sound in Apple's Mac OS X and iOS operating systems.
0
votes
1answer
18 views
Digital Audio Workstation Architecture on iOS
I am developing an architecture for digital audio workstation that works on iOS (mainly, but trying to support OS X too). I'm going slowly through miles of documentation by Apple and references of ...
0
votes
1answer
25 views
How can I implement Equalizer in my iPhone application?
I am Developing the iPad app which has Equalizer functionality,which means sound play on three properties( Low, High, Medium). I googled it and found this link: iPhoneMixerEQGraphTest
Its ...
0
votes
0answers
3 views
IOAudioSMPTETime on iOS
I´m trying to decode a Analog AudioStream with SMPTE Timecode Data on iOS.
My Algorithm works fine, but I keep getting false read outs every second or so due to memoryissues I assume.
Currently I´m ...
0
votes
0answers
30 views
Volume control using Core Audio
I have been using this code to re-route the sound to speaker from microphone. I have been able to successfully do it using this piece of code. but now I want to increase the volume the speaker that is ...
0
votes
0answers
26 views
set audio input gain in iOS6
I'm developing a simple recording app for an iPhone4 running on iOS6.1.3.
I am aware of how to set the mic input gain: How to control hardware mic input gain/level on iPhone?
However, the ...
0
votes
0answers
11 views
iOS Debugging midi controllers with device
Would like to ask if there is a better way to debug software that use midi controllers with the ios device.
Right now I'm :
1) Connecting the iPad to the Macbook Pro
2) compiling the program in ...
2
votes
1answer
58 views
How to increase volume of a sound and remove background noise in objective c
I have recorded a sound using AVFoundation Framework. It plays well but it contains a lot of surrounding noise.
I need to remove this noise and also amplify the sound to increase the volume.
Can ...
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 ...
0
votes
2answers
52 views
AudioFileCreateWithURL failed,return -50
NSString *docsDir;
NSArray *dirPaths;
//
dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
docsDir = [dirPaths objectAtIndex:0];
...
0
votes
0answers
29 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
2answers
28 views
OSX / iOS: Reading a .WAV into a float buffer
I've got a ~1s mono .WAV on disk. I would like my OSX (and later iOS) app to read it into a float buffer.
What's the simplest way to achieve this?
0
votes
1answer
45 views
Ideal Way to Save Audio Data in Objective-C
I'm downloading and saving audio files from a URL. I'm trying to ensure that I'm properly implementing my variables and am storing the files themselves properly.
Is there an ideal or standard way of ...
1
vote
0answers
24 views
Redirect audio output to hdmi connector
I have connected a MFI device with my iPhone 5 and a bluetooth device is also connected to that device. Problem is audio is redirected to bluetooth and problem occurs only with HDMI connector, old ...
0
votes
1answer
22 views
CoreAudio, iOS: Failed to use mono Input and stereo output with RemoteIO
I was trying to set audio input to mono and output to stereo using two AudioStreamBasicDescriptions for one RemoteIO AudioUnit, which is the only AudioUnit there.
Then I registered two separate ...
0
votes
0answers
40 views
AUGraph with sampler causing a memory leak
I'm not able to initialize and unitialize an audio graph with sampler without a memory leak. I tried to reduce the amount of code in my example, so the following example doesn't even start/stop the ...
2
votes
1answer
94 views
How to generate audio wave form programatically while recording Voice in iOS?
How to generate audio wave form programmatically while recording Voice in iOS?
m working on voice modulation audio frequency in iOS... everything is working fine ...just need some best simple way ...
1
vote
0answers
30 views
Recording the generated audio in an OpenAL based sequencer app
I have a sequencer style app that plays small, pre-recorded wav files. The user can set up beats, melodies, etc. It's all built on OpenAL, which does a nice job of playing lots of samples at once and ...
0
votes
1answer
40 views
iOS audio output only to headphone jack
Is it possible to output audio only to the iOS device's headphone jack and nowhere else? (e.g. not speakers nor bluetooth)
We're experimenting on a hardware add-on that receives input as tones from ...
0
votes
0answers
25 views
CoreMIDI MidiReceived Issue
I have a thread in my OSX app where I process midi messages stored in a packetList and send them using MIDIReceived(deviceEndpoint, packetList) to a virtual instrument;
As part of my program, I send ...
1
vote
0answers
30 views
RTP Streaming raw AAC
I have raw AAC frames (variable size) and I want to stream them over RTP. I have their ADTS header.
header sample :
0xff 0xf9 0x5c 0x60 0x7 0x40 0x00
According to this the format is :
mpeg-2 ...
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 ...
3
votes
2answers
70 views
How do I start a Record iOS audio session in the background?
I'm trying to start a kAudioSessionCategory_RecordAudio after my app is woken up in the background but not forefront (like during a significant location change, I have seen other apps in the store do ...
0
votes
0answers
14 views
can AudioFileOpenWithCallbacks load a caf file with header?
The memory you give to AudioFileOpenWithCallbacks is it sampleData only or can you pass an entire file's content via buffer(with header and all)?
Also is there any example or extra documentation on ...
0
votes
0answers
32 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
12 views
kAudioUnitSubType_AudioFilePlayer dynamicly adjustable?
I am trying to use kAudioUnitSubType_AudioFilePlayer int a program were I need to be able to see when a stream has finished playing. How can I check ANY sort of state a stream in a ...
0
votes
0answers
24 views
iOS: Pausing Music playback while app is in focus kills app's sounds
Our iOS app uses AudioSessionCategory_SoloAmbientSound.
And if we follow this procedure, the audio of our app will become silence:
Turn on the built-in Music app and play it.
Turn on our app and ...
0
votes
1answer
25 views
creating ExtAudioFileRef from loaded memory buffer
Is there a function in the apple libraries which can create an ExtAudioFileRef object from a given memory buffer (say a void*). I have all my files concatenated into one memory buffer so I must only ...
3
votes
1answer
110 views
Recording through headphone and playing through iphone speaker
I am looking to use RemoteI/O for audio recording and playing.I am very poor to understand core audio, because of that I followed Amazing Audio open source.So far I can able to Record and play with ...
0
votes
1answer
33 views
how to use AUMatrixMixer
i know the AUMatrixMixer is what i need. "A unit that mixes an arbitrary number of inputs to an arbitrary number of outputs."
i found some info here:
...
0
votes
0answers
13 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
18 views
How do I connect mic input to an effect unit and then to a mixer (using AudioCore)?
I've been able to get microphone input, connect it to a mixer, connect the mixer to a reverb2 effect, and then output all that to the speaker with CoreAudio. It looks like this:
Mic -> Mixer -> ...
0
votes
0answers
18 views
iOS AurioTouch2 returning error code 1768846202
I'm trying to figure out why the sample code provided by Apple for aurioTouch2 is showing errors in the log.
The code is in PerformThru:
static OSStatus PerformThru(void *inRefCon, ...
3
votes
1answer
66 views
Writing audio device loopback on MacOS with Xamarin (C#)
I am developing cross platform (Windows, Mac) desktop application that will be able to catch desktop sound. I already achieved this with NAudio on Widnows, but I have problems with OSX.
From what I ...
1
vote
0answers
27 views
iOS: Change audio session properties without restarting audio session or AUGraph?
I run an AUGraph in an audio session. I wonder if it's possible to change audio session or audio unit properties in run time after starting the AUGraph. For example, if I switch hardware (e.g., mics), ...
0
votes
1answer
31 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
24 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
1answer
46 views
iOS: Bad Mic input latency measurement result
I'm running a test to measure the basic latency of my iPhone app, and the result was disappointing: 50ms for a play-through test app. The app just picks up mic input and plays it out using the same ...
0
votes
2answers
38 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
50 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
1answer
26 views
AUNode CAShow Output
I have two different iOS projects that create an AUGraph that has 1 Multichannel Mixer and 1 Remote IO Audio Units.
In one project, when I print the output of the AUGraph using CAShow() I get the ...
0
votes
0answers
110 views
Sending audio to multiple airplay speakers from terminal
I want to be able to select all airplay outputs for audio, and send all system audio through all of the airplay speakers, like how iTunes can send to multiple speakers. I know there are GUI utilities ...
-3
votes
0answers
35 views
audio device not found macbook [closed]
Mac Book Pro 2012
Mountain Lion
I have Soundflowerbed. After Quit this software, my mastervolume in the Audio/Midi Setup was down and kind of disabled. I tryed to restart my core audio by sudo ...
0
votes
1answer
90 views
iOS streaming audio player
I'm in need of an audio streaming player component, using the hardware decoding capabilities of the iPhone (CoreAudio).
So before I start making my own I was wondering if you guys knew any good ones ...
1
vote
0answers
32 views
How to reduce AUGraph implemention size?
I have recently implemented an AUGraph with the a AUSampler node, a AUMixer node and a reverb node. Everything is working just fine. But when I profile the app, the size of the core audio ...
0
votes
1answer
37 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
47 views
Saving iOS App Data Into Garageband Format?
I've written an iOS CoreAudio /CoreMIDI Application for iOS 5 and above, and I'm using the wonders of CoreMIDI to create a sequencer instance which plays notes (drawn by hand) with multiple tracks - ...
2
votes
1answer
72 views
How to set speaker configuration programatically using Core Audio API on Mac OS X?
I have a 7.1 channel audio output device and a custom kext to drive that. My custom application needs to send 7.1 rear channel audio data to the device but the device receives only 2 channel audio ...
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 !
3
votes
1answer
100 views
iOS Core Audio : Converting between kAudioFormatFlagsCanonical and kAudioFormatFlagsAudioUnitCanonical
I need to convert between this format :
format.mSampleRate = 44100.0;
format.mFormatID = kAudioFormatLinearPCM;
format.mFormatFlags = kAudioFormatFlagsCanonical | ...

