Loading...
Logo
Processing Forum

analyse sound

in Contributed Library Questions  •  1 year ago  
Hey all,

I want to analyse about 5 minutes of sound and I want
to return variables per 1 or 2 second that collect the
averages of the following.

the average of the period of the high, middle and low.
I has to be returned within 0 and 255.
Also the average of the volume of the period.

realy hope you guys can help me out!

Replies(1)

Re: analyse sound

1 year ago
seems like this is a whole program you're asking for. have a look at the minim library. you can get the high, middle and low frequencies with a fast fourier transform (fft). try the following sketch as a start:
Copy code
  1. import ddf.minim.*;
  2. import ddf.minim.analysis.*;

  3. Minim minim;
  4. AudioPlayer sound;
  5. FFT fft;

  6. void setup() {
  7.   size(640, 360);
  8.  
  9.   minim = new Minim(this);
  10.   sound = minim.loadFile("yoursoundfile.mp3");
  11.   sound.play();
  12.   fft = new FFT(sound.bufferSize(), sound.sampleRate());
  13. }

  14. void draw() {
  15.   background(255);
  16.   fft.forward(sound.mix);
  17.   for (int i = 0; i < fft.specSize(); i++) {
  18.     int tempBand = (int) fft.getBand(i);
  19.     line(i, height, i, height - tempBand);
  20.    
  21.     // better look, but cut off in high frequencies
  22.     //rect(i * 4, height, 4, -tempBand);
  23.   }
  24. }

  25. void stop() {
  26.   sound.close();
  27.   minim.stop();
  28.   super.stop();
  29. }
your sound file needs to be in a folder called "data" within your sketch folder (/yoursketch/data/yoursoundfile.mp3).

fft.getBand(i) returns the value of the frequency at position i. i therefor has to be within the range of fft.specSize(). for the averages of low, mid and high frequencies you need to divide the specSize into three ranges. within these three ranges you can calculate the averages of the frequency values.

here's the official manual on the library website:
http://code.compartmental.net/tools/minim/manual-fft/

and here's the javadoc:
http://code.compartmental.net/minim/javadoc/index.html?ddf/minim/analysis/FFT.html


Cheers,
Chris