Common topics include digital filtering; audio processing; image processing; sampling; data compression; spectral analysis; the Discrete Fourier Transform (DFT), especially its fast implementations (FFT); and wavelet transforms. Common tools used in the field include MATLAB; Octave; Python, ...
14
votes
12answers
9k views
How to detect BPM of the song by programming
How can the tempo/BMP of a song be determined programmatically? What algorithm(s) are commonly used, and what considerations must be made?
29
votes
9answers
28k 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?
17
votes
6answers
7k views
Any good recommendations for MP3/Sound libraries for java? [closed]
I am writing my masters thesis which is closely related to processing sound files (mp3 and alternative formats such as ogg, aac, ...) and sound in Java. Because Java has so much open source support, I ...
18
votes
15answers
2k views
.NET Library to Identify Pitches
I'd like to write a simple program(preferably in C#) to which I sing a pitch using a mic and the program identifies to which musical note that pitch corresponds.
Thank you very much for your prompt ...
21
votes
13answers
12k views
Beats per minute from real-time audio input
I'd like to write a simple C# application to monitor the line-in audio and give me the current (well, the rolling average) beats per minute.
I've seen this gamedev article, and that was absolutely no ...
11
votes
8answers
5k views
Detecting the fundamental frequency
There's this tech-festival in IIT-Bombay, India, where they're having an event called "Artbots" where we're supposed to design artbots with artistic abilities. I had an idea about a musical robot ...
13
votes
5answers
13k views
Signal processing library in Java?
I'd like to compute power spectral density of time series; do some bandpass, lowpass, and highpass filtering; maybe some other basic stuff.
Is there a nice open-source Java library to do this?
I've ...
7
votes
4answers
8k views
Real-time pitch detection using FFT
I'm trying to do real-time pitch detection using C++. I'm testing some code from performous (http://performous.org/), because everything else hasn't worked for me. I know for sure that this works, but ...
5
votes
9answers
8k views
Real time pitch detection
I'm trying to do real time pitch detection of a users singing, but I'm running into alot of problems. I've tried lots of methods, including FFT (FFT Problem (Returns random results)) and ...
4
votes
4answers
6k views
How to get Frequency from FFT result
I have FFT result, this is 2 double array, real part array and imaginary part array. How to get frequency at each element in this arrays? I would like have frequency array from this result.
And I ...
12
votes
7answers
4k views
Note onset detection
I am developing a system as an aid to musicians performing transcription. The aim is to perform automatic music transcription (it does not have to be perfect, as the user will correct glitches / ...
2
votes
2answers
6k views
Low pass filter software?
I'm looking for digital low pass filter code/library/class for a .net windows forms project, preferably written in c, c++ or c#. I probably need to set the number of poles, coefficients, windowing, ...
10
votes
4answers
2k views
Chord detection algorithms?
I am developing software that depends on musical chords detection. I know some algorithms for pitch detection, with techniques based on cepstral analysis or autocorrelation, but they are mainly ...
6
votes
4answers
3k views
How do you do bicubic (or other non-linear) interpolation of re-sampled audio data?
I'm writing some code that plays back WAV files at different speeds, so that the wave is either slower and lower-pitched, or faster and higher-pitched. I'm currently using simple linear ...
10
votes
7answers
6k views
Music - How do you analyse the fundamental frequency of a PCM or WAV sample
I have a 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 believe FFT's ...
7
votes
4answers
3k views
DSP - Filtering in the frequency domain via FFT
I've been playing around a little with the Exocortex implementation of the FFT, but I'm having some problems.
Whenever I modify the amplitudes of the frequency bins before calling the iFFT the ...
5
votes
2answers
699 views
Use convolution to find a reference audio sample in a continuous stream of sound
in my previous question on finding a reference audio sample in a bigger audio sample, it was proposed, that I should use convolution.
Using DSPUtil, I was able to do this. I played a little with it ...
5
votes
6answers
901 views
Programmatically increase the pitch of an array of audio samples
Hello kind people of the audio computing world,
I have an array of samples that respresent a recording. Let us say that it is 5 seconds at 44100Hz. How would I play this back at an increased pitch? ...
2
votes
3answers
2k views
Cepstral Analysis for pitch detection
I'm looking to extract pitches from a sound signal.
Someone on IRC just explain to me how taking a double FFT achieves this. Specifically:
take FFT
take log of square of absolute value (can be ...
26
votes
9answers
4k views
Given an audio stream, find when a door slams (sound pressure level calculation?)
Not unlike a clap detector ("Clap on! clap clap Clap off! clap clap Clap on, clap off, the Clapper! clap clap ") I need to detect when a door closes. This is in a vehicle, which is easier than a ...
5
votes
4answers
1k views
Programmatically 'Listening' to Sound (Signal Processing?)
I'm familiar with Computer Vision (Well, know OF it), of which one application can be image recognition, such as Optical Character Recognition, I believe. However, something that I am more interested ...
6
votes
3answers
9k views
Creating sine or square wave in C#
How do a I generate an audio sine or square wave of a given frequency.
I am hoping to do this to calibrate equipment, so how precise would these waves be?
0
votes
1answer
88 views
Where to start with Fourier Analysis
I'm reading data from the microphone and want to perform some analysis on it. I'm attempting to generate a spectrum analyser something like this:
What I have at the moment is this:
My ...
8
votes
3answers
958 views
Algorithm to determine fundamental frequency from potential harmonics
I am attempting to extract a fundamental frequency from a sound source. maybe someone is singing A3 into the microphone, so I want to be detecting ~ 110Hz
my approach is:
FFT 1024 floats
use the ...
25
votes
3answers
8k 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 amplitude of the 2 ...
8
votes
6answers
4k views
Tone Generation in Cocoa Touch
I need to generate a tone that I can manipulate frequency and wave. The overall goal is to create a basic piano. Does anyone know how I can achieve this?
My development platform is the iPhone 2.x
19
votes
11answers
6k views
Saturating Addition in C
What is the best (cleanest, most efficient) way to write saturating addition in C?
The function or macro should add two unsigned inputs (need both 16- and 32-bit versions) and return all-bits-one ...
12
votes
7answers
3k views
Exponential Moving Average Sampled at Varying Times
I have a continuous value for which I'd like to calculate an exponential moving average. Normally I'd just use the standard formula for this:
Sn = αY + (1-α)Sn-1
where Sn is the new ...
7
votes
6answers
2k views
Music Recognition and Signal Processing
I want to build something similar to Tunatic or Midomi (try them out if you're not sure what they do) and I'm wondering what algorithms I'd have to use; The idea I have about the workings of such ...
5
votes
3answers
6k views
Any good C/C++ DSP library?
Which DSP library in C/C++ would you recommend? I will need it for real-time embedded systems. It'd be great to have sound signal processing accompany too, but not a mandatory. If you have knowledge ...
22
votes
8answers
814 views
Can sizeof(int) ever be 1 on a hosted implementation?
My view is that a C implementation cannot satisfy the specification of certain stdio functions (particularly fputc/fgetc) if sizeof(int)==1, since the int needs to be able to hold any possible value ...
3
votes
1answer
816 views
Fourier space filtering
I have a real vector time series x of length T and a filter h of length t << T. h is a filter in fourier space, real and symmetric. It is approximately 1/f.
I would like to filter x with h to ...
2
votes
3answers
684 views
FFT on iPhone to ignore background noise and find lower pitches
I have implemented Demetri's Pitch Detector project for the iPhone and hitting up against two problems. 1) any sort of background noise sends the frequency reading bananas and 2) lower frequency ...
1
vote
3answers
1k views
Signal processing: FFT overlap processing resources
Are there any good (if possible scientific) resources available (web or books) about overlap processing. I am not that interested in the effects of using overlap processing and windows when analyzing ...
5
votes
2answers
3k views
Android 2.3 Visualizer - Trouble understanding getFft()
First time here so sorry in advance for any butchered formatting.
So I am completely new to DSP so I have only a very general understanding of the Fourier Transform. I am trying to build a visualizer ...
3
votes
0answers
66 views
Using IOS Accelerate Framework for 2D Signal Processing on Non-Power-of-Two images?
//EDIT...
I'm editing my question slightly to address the issue of working specifically with non-power-of-two images. I've got a basic structure that works with square grayscale images with sizes ...
3
votes
0answers
501 views
Programming a Spectrogram using C [closed]
I am trying to make an audio spectrogram in C and am thinking about using the BASS library:
http://www.un4seen.com.
I searched over Google and here, but majority of examples are in C++. If any of ...
3
votes
3answers
2k views
Android Compass orientation on unreliable (Low pass filter)
Im creating an application where i need to position a ImageView depending on the Orientation of the device.
I use the values from a MagneticField and Accelerometer Sensors to calculate the device ...
1
vote
2answers
217 views
Explanation of Interpolate Hermite method
I've currently got this bounty running on how to resample audio data with the intention of increasing the pitch.
Many solutions have been made and I have to admit I'm feeling a bit overwhelmed by the ...
1
vote
7answers
1k views
Where can I find good tutorials on writing audio DSP filters (lowpass, etc)?
I've recently become very interested in learning how to implement various audio filters in AS3. By intuitive guessing (and inspired by capacitors), I've managed to create what seems to be a 1st order ...
1
vote
4answers
1k views
Autocorrelation returns random results with mic input (using a high pass filter)
Sorry to ask a similar question to the one i asked before (FFT Problem (Returns random results)), but i've looked up pitch detection and autocorrelation and have found some code for pitch detection ...
4
votes
0answers
164 views
Android AudioRecord which settings to record call
I use AudioRecord class to record the voice during a call.
I am intererested to record only the voice of the person who owns the phone ( from the microphone).
During the recording I would like to do ...
2
votes
2answers
179 views
FFT Pitch Detection for iOS using Accelerate Framework?
I have been reading up on FFT and Pitch Detection for a while now, but I'm having trouble piecing it all together.
I have worked out that the Accelerate framework is probably the best way to go with ...
1
vote
1answer
176 views
Fast memory manipulation in Java?
I am a bit of a newbie to Java (prior experience with C on embedded platforms), so please forgive me if this question is very trivial.
I need to implement some signal processing algorithms in Java. I ...
0
votes
0answers
21 views
Compiling FFTW3 for IOS 5.1 on OSX 10.7
A similar version of this question has been asked before (how to compile fftw3 on iOS) about previous versions of IOS and/or OSX, but I am unable to get fftw3 working on a actual IOS device. (Though ...
-2
votes
2answers
378 views
Sound convertion to frequency in android [closed]
Possible Duplicate:
Real time pitch detection
Determine the audio frequency of sound received via the microphone
I'm developing my own android guitar tuner. Here I will have to use the ...
14
votes
6answers
3k views
Pitch recognition of musical notes on a smart phone
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?
Should I use:
Kiss FFT
FFTW
...
15
votes
3answers
2k views
Guitar Chord Recognition Algorithm?
Whats a good digital signal processing algorithm that is good on guitar chords? Since Fast Fourier Transform I think only is accurate on single notes played on the guitar but not notes that are played ...
13
votes
7answers
12k views
Integrating gyro and accelerometer readings
I have read a number of papers on Kalman filters, but there seem to be few good publically accessible worked examples of getting from mathematical paper to actual working code.
I have a system ...
7
votes
6answers
2k views
Sound sample recognition library/code
I don't want sound-to-text software. What I need is the following:
I'll record multiple (say 50+) audio streams (recordings of radio stations)
from that recordings, I'll mark interesting audio ...