Tagged Questions

10
votes
2answers
1k views

Analyze audio using Fast Fourier Transform

I am trying to create a graphical spectrum analyzer in python. I am currently reading 1024 bytes of a 16 bit dual channel 44,100 Hz sample rate audio stream and averaging the ampl …
10
votes
6answers
4k views

Fast fourier transform in c#

Where can I find a free, very quick, and reliable implementation of FFT in C#? Can be used in a product? or are there any restrictions?
8
votes
4answers
243 views

Pitch recognition of musical notes on a smart phone

Hi. With limited resources such as slower CPUs, code size and RAM, how best to detect the pitch of a musical note, similar to what an electronic or software tuner would do? Shoul …
6
votes
1answer
215 views

Is there an FFT that uses a logarithmic division of frequency?

Wikipedia's Wavelet article contains this text: The discrete wavelet transform is also less computationally complex, taking O(N) time as compared to O(N log N) for the fast Fou …
6
votes
7answers
1k views

Music - How do you analyse the fundamental frequency of a PCM or WAC sample

Sample held in a buffer from DirectX. It's a sample of a note played and captured from an instrument. How do I analyse the frequency of the sample (like a guitar tuner does). I bel …
5
votes
6answers
227 views

Getting starting with Parallel programming.

Hi guys, So it looks like multicore and all its associated complications are here to stay. I am planning a software project that will definitely benefit from parallelism. The prob …
5
votes
4answers
202 views

Find an occurrence of a WAV sample inside another WAV?

Is it possible with FFT to find an occurrence of a small wav sample inside of a longer wav, if it is known that that exact sample exists somewhere in the wav (but may be mixed with …
5
votes
7answers
3k views

matlab FFT. Stuck understanding relationship between frequency and result

We're trying to analyse flow around circular cylinder and we have a set of Cp values that we got from wind tunnel experiment. Initially, we started off with a sample frequency of 2 …
4
votes
2answers
169 views

How do I multiply the spectra of two images of different dimensions?

Hello, This is not a "programming" question. But I'm sure it's something that is widely known and understood in this community. I have an image, x, and a much smaller image, y, a …
3
votes
3answers
116 views

Peak-finding algorithm for Python/SciPy

I can write something myself by finding zero-crossings of the first derivative or something, but it seems like a common-enough function to be included in standard libraries. Anyon …
3
votes
4answers
166 views

Converting an FFT to a spectogram.

I have an audio file and I am iterating through the file and taking 512 samples at each step and then passing them through an FFT. I have the data out as a block 514 floats long ( …
3
votes
3answers
345 views

Explain the FFT to me

I want to take audio PCM data and find peaks in it. Specifically, I want to return the frequency and time at which a peak occurs. My understanding of this is that I have to take …
3
votes
4answers
329 views

Normalizing FFT Data for Human Hearing

The typical FFT for audio looks pretty similar to this, with most of the action happening on the far left side http://www.flight404.com/blog/images/fft.jpg He multiplied it by a …
3
votes
5answers
2k views

Help me understand FFT function (Matlab)

1) Besides the negative frequencies, which is the minimum frequency provided by the FFT function? Is it zero? 2) If it is zero how do we plot zero on a logarithmic scale? 3) The re …
2
votes
2answers
46 views

Which time-frequency coefficients does the Wavelet transform compute?

The Fast Fourier Transform takes O(N log N) operations, while the Fast Wavelet Transform takes O(N). But what, specifically, does the FWT compute? Although they are often compare …

1 2 3 next
15 30 50 per page