/examples/Analysis/OfflineBeatDetection/OfflineBeatDetection.pde

http://github.com/ddf/Minim · Processing · 83 lines · 40 code · 9 blank · 34 comment · 3 complexity · ec3622f7e78d1659b0d71e0df8e5ed19 MD5 · raw file

  1. /**
  2. * This sketch demonstrates how to use the BeatDetect object in FREQ_ENERGY mode for offline (non-realtime) beat detection.<br />
  3. * To "tick" the analysis you must call <code>detect</code> with successive buffers of audio.
  4. * You can do this inside of <code>draw</code> by calling <code>read</code> on the AudioRecordingStream for the file.
  5. * <p>
  6. * For more information about Minim and additional features,
  7. * visit http://code.compartmental.net/minim/
  8. */
  9. import ddf.minim.*;
  10. import ddf.minim.spi.*;
  11. import ddf.minim.analysis.*;
  12. Minim minim;
  13. MultiChannelBuffer buffer;
  14. AudioRecordingStream song;
  15. BeatDetect beat;
  16. void setup()
  17. {
  18. size(512, 200, P3D);
  19. minim = new Minim(this);
  20. // buffer to read into from the file stream
  21. buffer = new MultiChannelBuffer(1024, 2);
  22. // load a file stream we can read the file from a buffer at a time
  23. song = minim.loadFileStream("marcus_kellis_theme.mp3");
  24. // we have to tell the AudioRecordingStream to play so read will return data.
  25. song.play();
  26. // a beat detection object that is FREQ_ENERGY mode that
  27. // expects buffers the length of song's buffer size
  28. // and samples captured at songs's sample rate
  29. beat = new BeatDetect(buffer.getBufferSize(), song.getFormat().getSampleRate());
  30. // set the sensitivity to 300 milliseconds
  31. // After a beat has been detected, the algorithm will wait for 300 milliseconds
  32. // before allowing another beat to be reported. You can use this to dampen the
  33. // algorithm if it is giving too many false-positives. The default value is 10,
  34. // which is essentially no damping. If you try to set the sensitivity to a negative value,
  35. // an error will be reported and it will be set to 10 instead.
  36. // note that what sensitivity you choose will depend a lot on what kind of audio
  37. // you are analyzing. in this example, we use the same BeatDetect object for
  38. // detecting kick, snare, and hat, but that this sensitivity is not especially great
  39. // for detecting snare reliably (though it's also possible that the range of frequencies
  40. // used by the isSnare method are not appropriate for the song).
  41. beat.setSensitivity(300);
  42. }
  43. void draw()
  44. {
  45. background(0);
  46. // process a buffer
  47. song.read(buffer);
  48. // do beat detection on the left channel
  49. beat.detect(buffer.getChannel(0));
  50. // draw a green rectangle for every detect band
  51. // that had an onset this frame
  52. float rectW = width / beat.detectSize();
  53. for(int i = 0; i < beat.detectSize(); ++i)
  54. {
  55. // test one frequency band for an onset
  56. if ( beat.isOnset(i) )
  57. {
  58. fill(0,200,0);
  59. rect( i*rectW, 0, rectW, height);
  60. }
  61. }
  62. // draw an orange rectangle over the bands in
  63. // the range we are querying
  64. int lowBand = 5;
  65. int highBand = 15;
  66. // at least this many bands must have an onset
  67. // for isRange to return true
  68. int numberOfOnsetsThreshold = 4;
  69. if ( beat.isRange(lowBand, highBand, numberOfOnsetsThreshold) )
  70. {
  71. fill(232,179,2,200);
  72. rect(rectW*lowBand, 0, (highBand-lowBand)*rectW, height);
  73. }
  74. }