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 ...
1
vote
1answer
231 views

iPhone audio frequency [duplicate]

Possible Duplicate: How to detect sound frequency for particular sound in iphone? I am seeking a way to find the frequency of mic input. I can record my voice or a sin noise in a temporary ...
1
vote
1answer
216 views

iPhone 5 CPU frequency throttled when running on its battery

I am working on an iOS app that uses iPhone’s CPU to do some complex image processing. I noticed when running on its battery, the iPhone 5 CPU is very sluggish right after you press the power switch ...
1
vote
0answers
145 views

iOS Tone Generator with variable Oscillation Patterns

I have a Tone Generator Application that generates a tone based on Slider Value for frequency. This part of the application works fine. I'm redering tone using #import ...
0
votes
1answer
87 views

frequency of NSNumbers in NSArray

Hi I'm working on an app which creates an NSArray of NSNumbers based on a set of upper and lower bounds set by the user. There will be a min of 5000 randomly created numbers within these bounds... ...
2
votes
2answers
1k views

Use iPhone to recognize sound frequency in range 20-24 Hz

My boss wants me to develop an app, using iPhone to recognize sound frequencies from 20-24 Hz that humans cannot hear. (iPhone frequency response: 20 Hz to 20 kHz) Is this possible? If yes, can ...
4
votes
2answers
229 views

Why do we use only the first buffer in aurioTouch project

I'm investigating aurioTouch2 sample code. And I noticed, that when we analize audio data, we use only the first buffer of this data, and never other buffers. in void ...
2
votes
1answer
521 views

How to detect the value for lowest and highest frequency in aurioTouch project [duplicate]

Possible Duplicate: How to get Frequency from FFT result I'm investigating aurioTouch2 sample code. And in draw view fuction one function is always called to compute fft data, so we can ...
2
votes
2answers
436 views

Finding a single frequency in an sound file xcode

For an app I'm working on a i need to be able to 'search' a sound file to find a particular frequency. Basically, the iPhone mic records for 5 seconds writes to an a lossless music file. I then need ...
1
vote
2answers
557 views

iPhone app audio recording only in above certain frequency

I am currently engaged in a audio recording based application for iPhone and iPad. Here I have done the basic audio recording feature myself, but I don't have any idea about how to record the audio ...
9
votes
1answer
2k views

iOS FFT Accerelate.framework draw spectrum during playback

I did a lot of research and learned a lot about FFT and the Accelerate Framework. But after days of experiments I'm kind of frustrated. I want to display the frequency spectrum of an audio file ...
0
votes
1answer
492 views

Unable to get correct frequency value on iphone

I'm trying to analyze frequency detection algorithms on iOS platform. So I found several implementations using FFT and CoreAudio (example 1 and example 2). But in both cases there is some imprecision ...
1
vote
1answer
371 views

Channel vocoder using FFT - what to do about DC Component and Nyquist frequency?

I am trying to implement a channel vocoder using the iOS Accelerate vDSP FFT algorithms. I am having trouble figuring out how to treat the DC component and Nyquist frequency. The modulator and ...