The minim tag has no wiki summary.
7
votes
1answer
69 views
Harmonics count in a music sample
To determine the richness of a sound, I would like to determine the number of harmonics in a sample of music. For that, I'm using Processing with the Minim library which gives me a full spectrum with ...
3
votes
1answer
46 views
Indices of k-minimum values along an axis of a numpy array
Is there a way to return the indices of k-minimum values along an axis of a numpy array without using loops?
1
vote
2answers
83 views
Fast sound analysis in Processing (Minim library)
I'm collecting data from audio files based on sound analysis averaged per seconds and I'm wondering if there's a way to speed it up, given that I don't have to listen to the audio while analyzing it.
...
1
vote
2answers
219 views
Difference in amplitude from the same source using FFT
I have a question regarding use of FFT. Using function getBand(int i) with Minim i can extract the amplitude of a specific frequency and do pretty maps of it. Works great.
However, this is a more of ...
1
vote
2answers
1k views
Volume Control in Processing (java)?
I'm working on a Processing project. I tried to set the Volume of the audio played with the minim library. (setVolume seems not to be supported, and setGain has no effect)
So, I'm wondering whether ...
0
votes
1answer
62 views
Audio Loop Processing.org (Java/Minim sound Library)
I'm trying to create a long piece of audio which is a collection of recorded audio clips that are, in time, merged into one large collage of sounds. I am using the Minim sound library, but at the ...
0
votes
0answers
43 views
How to play .mov file using Minim Audio Library
I am trying to play .mov (Quick Time audio) file on MAC and Windows using Minim Audio Library on JAVA platform but it gives following error.
Is there any way to play .mov file using java?
please ...
0
votes
0answers
51 views
How to play remote mp3 with Processing & Minim?
I'm making an applet with Processing 1.5.1 and Minim. When I try to play a remote mp3, the playback stops after less than one second. (I only hear the first note, and then it stops)
Code snippet :
...
0
votes
1answer
79 views
Processing Minim Library execution of Jar file
I have not been able to execute a jar file in Processing when using the minim sound library. Has anyone else encountered this problem or know why it may be occurring? Thanks!
0
votes
1answer
178 views
Audio Input to a Java/Processing Applet through Browser?
Is there a straightforward way to do this?
I am working in Processing, and I'm trying to get audio input using the Minim library to create visualizations; this works fine when it's just a Java app ...
0
votes
1answer
222 views
Adding Delay and ADSR filter using Processing Minim Library
Here is my Processing code. If someone can show me how to add either a Delay or ADSR filter (or both) to it's output that would be great.
Minim minim;
import ddf.minim.*;
import ddf.minim.signals.*;
...