views:

263

answers:

3

Hi folks, I am looking for a library that can accept a chunk of audio data and return the average amplitude over time within a given frequency band.

I've already asked this question over at comp.dsp, but it's clear to me that acquiring the know-how to build this on my own using a basic FFT library is going to require more time and energy than I have at present. Here is my original question with more detai: http://groups.google.com/group/comp.dsp/browse_thread/thread/e04f78d439e9e2bd

I've found lots of nice libraries for playing with sound (I used JSyn in the past), but none of these seem to be set up to return quick and dirty spectral information about a sound sample.

Any pointers would be much appreciated.

A: 

have a look at the jAudio package in jMir, there is probably much more than what you need ...

Nicola Montecchio
A: 

Have you taken a look at this:

http://download.oracle.com/javase/tutorial/sound/TOC.html

I have also used the Java Media Framework for video processing but I believe that they provide a good API for sound processing too. You should also look into that.

Petkovsky
+2  A: 

This Blog shows a java implementation of the FFT algorithm which is very concise and reads audio files and calculates the frequency spectrum.

You could also check Jtranforms open source FFT library

stacker