0
votes
0answers
8 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 ...
0
votes
0answers
20 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 ...
0
votes
1answer
23 views

iOS - updating the media play/pause state in the multitasking bar

We have a working app that uses an AU graph - CoreAudio API - to play audio. The graph is always running, and the play/pause state of the various source material is managed in the graph rendering ...
0
votes
1answer
52 views

How to call an Objective-C method from a AudioUnits C function? (iOS)

I found a great tutorial on AudioUnits (http://www.cocoawithlove.com/2010/10/ios-tone-generator-introduction-to.html) that I've since got working on my system; however, I'm having trouble calling my ...
0
votes
2answers
27 views

How can I program music from an app to play on a specific time?

I want to create an app that lets me go to the iOS music app, like a sub view controller but I'm not sure how I can do that. Can any of you tell me what I can do? I also want to learn how to trigger a ...
0
votes
1answer
64 views

iOS: 44k audio file should play at 22k sample rate

In my audio app I need to be able to change the format of an audio file (AIFF), more specifically the sample rate. The audio session is running at 22050 Hz, and the audio file itself is created in ...
2
votes
2answers
97 views

Hooking C functions

I want to hook a C function on Mac OS X. It's AudioUnitInitialize, so I can create a callback and save the audio to a file. I got the Mobile Substrate framework with the tutorial from this page. Here ...
0
votes
1answer
62 views

Difference between audio encoding/decoding and format conversion

Recently i have been trying to convert an audio file from one format to another through ffmpeg. i was trying to do some google but results made me a little confused about the difference between ...
0
votes
0answers
100 views

Realtime audio compression with AudioConverterFillComplexBuffer in iOS

I am trying to do realtime encoding of buffer that is coming from recording callback, but I seem not to really understand how to do this, and how it works. In fact I spent hours reading Apple's ...
0
votes
1answer
27 views

Xcode Audiocomponent Symbols not found and somehow cant use methods

im new to coding in c++, I only programmed in php and Java but I want to learn something more. It may be not the best to start with Audio things but I already know how programming works. But, I ...
0
votes
0answers
36 views

How do I check if the running application on Mac is providing audio output?

I am new to question here, even though I've seen tons of answers and got helped. I am now coding a program to catch specific audio output among running applications in Obj C. However, I've never ...
2
votes
1answer
64 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 ...
1
vote
1answer
82 views

How to check results of ExtAudioFileRead?

I'm using ExtAudioFileRead to read WAV file into memory as float * buffer. However, I'm not quite sure about results - when I print them out, I get values from - 1 to + 1(which should be theoretically ...
0
votes
1answer
62 views

iOS framework for manipulating sound file

I want to convert a recorded sound file to another data format or a graph which can be comparable/manipulatable with another file of same data format. May be some type of Fourier transform . Does iOS ...
4
votes
2answers
82 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
0answers
115 views

Core Audio sine wave, strange overtones

I'm trying to generate a sine wave using Core Audio with the code below. The AIFF-file generates just fine, however, the signal is not a pure sine-wave. When played back, and frequency analyzed, ...
0
votes
1answer
112 views

How to get Current Volume Level [duplicate]

I am working on 10.8 This is the code to get the current Volume of Speaker, -(float)getVolume{ float volume = 0.0; UInt32 thePropSize = sizeof(volume); AudioDeviceID devId = [self ...
1
vote
1answer
58 views

Reading CoreAudio input level with Tascam US-144MKII

(this is a clearer version of a question asked recently) I'm taking over some code to fix some problems, and one of them is baffling me. The application needs to monitor the input level and display ...
0
votes
1answer
85 views

Reading input volume with CoreAudio OSX

The documentation is a bit confusing- can somebody point me to code that will allow me to read the input volume on CoreAudio? The code I'm working with uses: AudioUnitGetParameter(mMixerUnit, ...
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 ...
1
vote
2answers
91 views

How to switch off audio output ios?

Is it possible to switch off audio output on device? I need route the sound to phone's speaker when headphones are connected. I need to connect some device via audio output(like connect headphones) ...
0
votes
0answers
27 views

When do AudioSession properties get activated?

I noticed that if I use AudioSessionSetProperty and immediately poll the property using AudioSessionGetProperty, I will not get the expected result (it will still show whatever default value existed ...
0
votes
0answers
47 views

CFRelease causes SEGV in AVAssetReader iOS app only in Release version

I am writing an iOS app that uses the AVAssetReader to process audio from the iPod library. The core thread for this uses code published in several posts (e.g. Howto read decoded PCM... ) I'm rapidly ...
1
vote
0answers
82 views

Mac, CoreAudio: Crash in AUGraphInitialize()

Our Mac app crashes in AUGraphInitialize() with this backtrace from gdb (gdb) bt #0 0x7004dc2f in PowerMeter::PowerMeter () #1 0x70073583 in MatrixMixerCore::MatrixMixerCore () #2 0x700461ac in ...
0
votes
1answer
143 views

Generate sine wave to play middle C using PortAudio

I am having trouble generating specific frequencies in PortAudio, whenever I try and change the frequency inside of the sin(n * FREQ * 2 * PI / SAMPLE_RATE) the frequency remains the same however the ...
0
votes
0answers
92 views

Recording to AAC from RemoteIO: data is getting written but all nosie

my goal I am using core audio to record sound. My idea is using a remoteIO unit and write data in its render call back. what I have done I can record pcm data into .caf file, but the size is ...
0
votes
0answers
48 views

Alerting user using audio while ios application is in the background

I have an IOS application that uses location manager to check for location changes and then if user is in a certain distance of a location it needs to alert the user. My application works all fine but ...
0
votes
0answers
101 views

Virtual Midi Controller and MidiLearn

I built a Virtual Midi Controller using CoreMIDI and the MidiServer recently and am having some trouble assigning the CC values of the corresponding virtual buttons to the Virtual instruments. I have ...
0
votes
3answers
61 views

How do I create an AIFF file

I have some raw sound data that I want to make into an AIFF file format. I know the specifics of the audio data. I tried creating a wave from the audio, but that didn't work. OS X does have a function ...
1
vote
0answers
115 views

AUGraph variSpeed didn't accept StreamFormat on iOS 5.x

I have a AUGraph to Play and Record Audio with this Setup: RemoteIO -> -> RemoteIO Mulichannel Mixer -> variSpeed Read Callback -> ...
0
votes
0answers
171 views

How do I get data from effect applied mic? (iOS Core Audio & Audio Graph)?

I would like handle some data from mic (effect applied through AUGraph). There are several article about handling effect unit, but, Audio unit connected to RemoteIO eventually in every article. I ...
1
vote
2answers
104 views

Normalize Audio File obj-c

Is there a library function to normalize a sound file? I have searched around but could not find any. I would like to be able to normalize a sound file and setting that into the sound file so it only ...
0
votes
0answers
64 views

CoreAudio Output Routing

I am developing a CoreAudio application and would like to be able to pass the default output audio through the app in order to create an FFT of the output audio. I am considering the Soundflower SDK ...
1
vote
1answer
92 views

CoreMIDI Manufacturer Presets

I built a virtual MIDI controller with CoreMIDI and would like to import manufacturer presets for ControlChange (i.e. cc value, associated effect name with cc number, preset name, etc.). Is there a ...
2
votes
1answer
150 views

AUGraph 3D Mixer crackle

I have a AUGraph to Play and Record Audio with this Setup: RemoteIO -> -> RemoteIO Mulichannel Mixer -> 3D Mixer Read Callback -> ...
2
votes
1answer
286 views

Audio Units: getting generated audio into a render callback

I've been trying without success to manipulate the samples produced by kAudioUnitType_Generator audio units by attaching an AURenderCallbackStruct to the input of the audio unit right after. I ...
0
votes
1answer
96 views

info about ExtFileReader C API for iOS audio file manipulation

So ,I need to reverse some audio *.caf file, I have seen that the way to do it should be: You cannot just reverse the byte data. I have achieved the same effect using CoreAudio and AudioUnits. ...
0
votes
0answers
80 views

Mac OS Audio Frameworks

There are CoreAudio.framework; CoreAudioKit.framework; AudioUnit.framework; AudioToolbox.framework. I most care about AudioUnit and AudioToolbox; It seems that AudioUnit is the most low level, ...
3
votes
1answer
181 views

Granular Synthesis in iOS 6 using AudioFileServices

I have a question regarding a sound synthesis app that I'm working on. I am trying to read in an audio file, create randomized 'grains' using granular synthesis techniques, place them into an output ...
1
vote
1answer
101 views

How to retrieve and iterate over sound data chunks in iOS?

Given an audio file 'coolsound.aif', how might I approach the task of retrieving the sound data chunks (SSND chunks) and iterating over them to do some arbitrary processing? I hope to be able to ...
0
votes
1answer
220 views

How to get samples from AudioQueue Services on iOS

I'm trying to get samples from AudioQueue to show spectrum of music (like in iTunes) on iPhone. Ive read a lot of posts but almost all asks about get samples when Recording, not playing :( I'm using ...
9
votes
2answers
255 views

The math behind Apple's Speak here example

I have a question regarding the math that Apple is using in it's speak here example. A little background: I know that average power and peak power returned by the AVAudioRecorder and AVAudioPlayer is ...
1
vote
1answer
151 views

Port iOS app to Mac OS-X(Audio capture and playback)

I have a sample app in iOS for Audio capture from mic & Play in real time. I am tring to convert this app in macosx but found some error. When i tried to compile my app in macosx then it return ...
0
votes
1answer
50 views

Change the call time between callbacks in Audio Core

I created custom callback for mixing sounds in real time for a timing music application using ExtAudioFile. OSStatus MyAURenderCallack ( void *inRefCon, ...
1
vote
1answer
201 views

Multiple audio and setting volume on Novocaine in iOS

How do I play multiple audio and change its volume using Novocaine? thanks!
1
vote
2answers
321 views

iOS Novocaine play on speaker

I´m trying to use Novocaine to play some audio withe high performance, but the sample code I found plays the audio only in the earphone, but I want it to play it on the speaker... is that possible? ...
0
votes
2answers
131 views

What does the “Mute” Button Do in Apple's AurioTouch2 sample code?

I am modifying Apple's code from the AurioTouch2 example on their developer's site. Currently I am trying to fully understand the function of the App. I see that the App writes 0's to the buffers ...
1
vote
1answer
261 views

How to real-time convert the PCM buffer to AAC data when recording for iOS?

I'm using Remote.IO to get the audio buffer from PCM, but the raw data is too big to send to remote-side by cellular network (3G network). I did reference some articles, but most of them suggest ...
1
vote
1answer
135 views

iOS - AudioFormat issue linking up mixer, remoteio and dynamics processor

I'm trying to link up my mixer -> remoteio -> dynamics processor Here is my AudioFormat // Describe format memset( &audioFormat, 0, sizeof(AudioStreamBasicDescription) ); ...
0
votes
1answer
144 views

Change speed (tempo) of playing track in realtime in iOS

I'm after writing an app that is essentially based on a very simple DJ metaphor. I want to be able to change the tempo of a track in real time by adjusting a slider. Can this be done in realtime ...

1 2 3 4 5 7