The remoteio tag has no wiki summary.
0
votes
0answers
57 views
Real-time converting the PCM buffer to AAC data for iOS using Remote IO and Audio Convert Service
I'm using Remote IO to get the audio buffer from PCM, I want to real-time send the data to Darwin Server by cellular network (3G network). I choose The AAC format as there is an article from ...
0
votes
0answers
39 views
How to Correctly Destroy ToneUnit after Tone Fades Out?
I'm generating tones on iPhone using AudioUnits based on Matt Gallagher's classic example. In order to avoid the chirps and clicks at the beginning/end, I'm fading the amplitude in/out in the ...
0
votes
0answers
17 views
iOS Remote IO frequencies
Some other SDK's mess up Remote IO when using nonstandard frequency for output. My input frequency is 22050.0 and I'm trying to get an output frequency about 32000. But it's got to be just the right ...
0
votes
1answer
93 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
0answers
16 views
Remote IO AudioBufferList Crash
Why would the following bolded line crash??? Any suggestions?
static OSStatus AudioInputCallback(void *inRefCon,
AudioUnitRenderActionFlags *ioActionFlags,
...
0
votes
0answers
29 views
Why does this malloc crash for remote IO?
I'm trying to use malloc to create some memory for an audio buffer for Remote IO. It works the vast most of the time. But recently it's been crashing on some iOS 6.0.1 through 6.1.3, strangely on ...
0
votes
1answer
125 views
Accessing Microphone and Camera Live Raw Data on iPhone
I need to access live raw data from camera and microphone on iPhone. I was searching for a few days, using "Remote IO" and "Audio Queue" were suggested for audio and AVCaptureSession for video. Since ...
0
votes
1answer
116 views
Multi channel audio iOS (need 4 simultaneous inputs)
I am working on a project where I need to process 4 audio input streams simultaneously. So far, I have been working using stereo audio streams, where the data originates from a USB based audio device ...
0
votes
0answers
107 views
How collect data from audio output in iOS using RemoteIO ? I can collect input (mic) but not output
I've got working code for collecting audio data from input (microphone). I want to do the same thing, but with output audio (audio signal which goes to speakers: ipod, radio app etc.). I can't manage ...
8
votes
1answer
194 views
Select Back Microphone on iPhone 5
Is there a way for RemoteIO unit to pick up back microphone on iPhone 5 ? I can configure AVAudioSession to choose between front microphone or bottom microphone but I can't find a way to select the ...
0
votes
1answer
56 views
AudioOutputUnitStart replace the Music app
My application (VoIP one) is using kAudioSessionCategory_PlayAndRecord category. Everything is working perfect expecting the fact that When calling AudioOutputUnitStart the Music App is replaced by my ...
0
votes
0answers
116 views
Handling interruptions while playing audio using OpenAL, RemoteIO and AVPlayer simultaneously
I am developing an app that requires playing audio using OpenAL, RemoteIO and AVPlayer simultaneously. I am also handling interruptions the way it is mentioned according to Apple's guidelines here: ...
4
votes
2answers
172 views
Recording volume drop switching between RemoteIO and VPIO
In my app I need to switch between these 2 different AudioUnits.
Whenever I switch from VPIO to RemoteIO, there is a drop in my recording volume. Quite a significant drop.
No change in the playback ...
0
votes
0answers
41 views
How do I get the state of a RemoteIO AudioUnit?
I have an app that has a start/stop button for audio recording and output.
When the user presses the button, the audio unit is started using AudioOutputUnitStart
When the user presses the button ...
0
votes
1answer
119 views
RemoteIO recorded audio file is either silent or 4KB
I'm using RemoteIO successfully to perform analysis on the incoming audio stream from the mic. I can't seem to get a file written to disk, though. I've read around a number of questions:
Example of ...
1
vote
0answers
199 views
Choose between built in mic and headset in iOS
We are developing an app that needs to change the audio route in iOS. We need to get some information from the mic input and then change to the internal mic of the device to record ambient sound.
We ...
1
vote
1answer
392 views
iOS RemoteIO - AudioUnitAddRenderNotify Callback
I'm trying to do a recording from RemoteIO using AudioUnitAddRenderNotify like this.
Basically, I'm not able to get the samples from bus1, which is my input bus. The recordingCallback does not go ...
2
votes
1answer
89 views
iOS - RemoteIO AudioUnits, possible to have 2?
I'm trying to do this
RemoteIO1 (for recording to buffer) -> kAudioUnitType_Mixer -> RemoteIO2 (for playback of output)
RemoteIO1 is used for 2 purposes :
1) To feed audio into the mixer channel ...
2
votes
2answers
351 views
RemoteIO and Recording AAC on iOS 6
Is anyone using RemoteIO for recording AAC audio on iOS 6? I've noticed that when I'm doing this, it kills the media server on interruption and my interruption callbacks are never called on iOS 6.0.
...
0
votes
0answers
84 views
Detect sound of audio player sound and convert in to text iPhone sdk [closed]
I am developing an application where i need to detect the sound of audio being played and convert that sound in to text.
I want to display the lyrics with audio player being played.
Is there any way ...
0
votes
1answer
198 views
RemoteIO: effecting audio produced by app
In a nutshell: Is there a way to capture/manipulate all audio produced by an app using RemoteIO?
I can get render callbacks which allow me to send audio to the speaker by hooking into RemoteIO's ...
1
vote
1answer
159 views
Using ExtAudioFileWrite to write at the end of a file
I'm trying to open a file and append data to it using ExtAudioFileWrite. Now, creating/initial writing(on creation)/converting works just fine, but unfortunately I can't seem to be able to open the ...
2
votes
2answers
341 views
No audio on iOS app using the RemoteIO AudioUnit when the iPad is restarted
I have a strange issue where an iOS app that I have developed works fine when I build and run it from XCode on the device. However, on restarting the device and running the app, I get no audio at all. ...
1
vote
2answers
199 views
Using remote io for recording and AVPlayer for playing ipod library audio at the same time continuously
Can I use remote io for recording and AVPlayer for playing iPod library audio at the same time continuously?
I tried but the error returned was:
AURemoteIO::ChangeHardwareFormats: error -10875.
1
vote
1answer
200 views
Audio Unit: Use sound output as input source
I want to process the stereo output from iOS devices, no matter what application causes them and visualize it in real-time.
Is it possible to use the generic output device (or anything else) to get ...
0
votes
0answers
68 views
Error -50 on ExtAudioFileDispose when stopping recording [duplicate]
Possible Duplicate:
RemoteIO recorded audio file is either silent or 4KB
I am recording an audio file using RemoteIO. The file is a .wav PCM file, but I'll go with anything that works ...
1
vote
1answer
209 views
iOS: Multiple AUs versus everything in one render callback
I'm doing some development on the custom sampler and audio engine for my (iPhone 4+) app, particularly adding recording and send effect features. I'm stuck trying to decide whether to go down the ...
3
votes
0answers
249 views
Airplay output from RemoteIO pass through
To prove a concept I am trying to output the iDevice microphone over Airplay. I have modified the AurioTouch code to provide the pass through, and it works fine using Airplay Mirroring from 4S / iPad ...
2
votes
2answers
182 views
Direct calls to Audio Unit instead of callbacks iOS
Are there direct calls to the audio unit so that I don't have to depend on the system callbacks-input and render callbacks(I can mimic this with a timer). For example, like there is AudioUnitRender to ...
0
votes
2answers
1k views
How to control hardware mic input gain/level on iPhone?
My audio-analysis function responds better on the iPad (2) than the iPhone (4). It seems sensitive to softer sounds on the iPad, whereas the iPhone requires much louder input to respond properly. ...
2
votes
0answers
184 views
recording against a metronome of set length using remote IO
I was able to create the exact functionality I wanted to avaudioplayer and avaudiorecorder but of course experienced latency problems. So after reading pretty much every article on the web and ...
1
vote
3answers
107 views
can do anything during a callback ? a basic objective c issue
Sorry for the many posts here regarding this issue but i am having a progress here.
I have a callback function, which is in C , and been called when a new buffer is arrived.
I was told here to not ...
0
votes
1answer
433 views
Core Audio - Remote IO Based Low-Latency Metronome
I am trying to construct a low-latency metronome using Core Audio.
What I am trying to achieve is using Remote IO, which should give me a timestamp for every packet of audio I produce. Then I want ...
0
votes
1answer
148 views
What conditions will cause an iOS app to be shut down by the OS besides high memory usage?
I am having a frustrating stability problem with an iPad app. On iPad 2, the app runs fine with no crashes, but on iPad 1, it will shut down randomly in the same way that it shuts down when memory ...
0
votes
2answers
275 views
sometimes crash EXC_BAD_ACCESS with no message (set NSZombieEnabled)
I'm handling RemoteIO to get mic inputs and modify them little.
Sometimes it crashes with EXC_BAD_ACCESS and there is no more message.
The lines that make crashes are these;
int currPower = ...
2
votes
0answers
194 views
remoteIO input square wave frequency is low
i input to the audioJack a square wave in the frequency of 2-3 khZ for about 5 seconds.
the square wave is 1 and 0 - no negative values.
i get some periodic signal that going between -32000 to 32000 ...
0
votes
2answers
186 views
Issues in Use of performSelectorOnMainThread in every millisecond
I wanna show the amplitude of real time sound on a UIView by graph.
I set sound sample rate as 1000 in a second.
And, To Update Graph, I did like this. this is called in every millisecond.
[Audio ...
0
votes
1answer
582 views
error in audio Unit code -remoteIO for iphone
i have this code, in order to read buffer samples , but i get a strange mach-o linker error ,
Framework of audio unit couldnt loaded so i put the audioTollBox and coreAudio as i read.
my code is :
...
3
votes
2answers
359 views
Really simple wave synth/table in ios
I want to make a really simple synth.
In short, i want to play a wav file, and have it loop at certain points until touch is released.
I am looking for some example code, (doesn't need to be free).
...
1
vote
1answer
229 views
Setting the rate at which RemoteIO Audio unit render callbacks are called
I've setup RemoteIO audio unit render callbacks for both input and ouput. I'd like the render callbacks to be called less often. How can I specify the rate at which they're called?
1
vote
1answer
368 views
Can we write the audio buffer in to a file that we get as part of Remote IO callbacks?
Can we write the audio buffer in to a file that we get as part of Remote IO callbacks?
Is recording and storing the recordings to a file restricted to AVAudioRecorder?
NEED A NEW TAG:: remote-io

