Minim is an audio library for processing environment.
Questions tagged [minim]
95 questions
1
vote
0 answers
Defining Frequency Bands with Minim
I'm using a Minim BeatDetect object to analyze the incoming microphone signal. BeatDetect uses FFT.
In the BeatDetect class, there are four functions of interest: isHat(), isKick(), isSnare() and isRange(int, int, int). The first three are…

Phil Sherman
- 11
- 1
1
vote
0 answers
Getting error when patching pan ugen to output: "Pan MUST be ticked with stereo output!"
I'm rigging up a minim test to take two audio files, pan them hard left/right, and play them from an output. When I remove references to the pan patch, everything plays just fine, but when I add it back in I get the…

Russ
- 21
- 4
1
vote
1 answer
Outputting multichannel audio through surround sound speakers
I'm working on an interactive sound installation that runs using Processing and Minim, among other things. This project requires more than just a simple left/right output (5 speakers, to be specific), which from what I've read means the Java Sound…

Russ
- 21
- 4
1
vote
0 answers
Realtime changes in my java fx application makes it fail
I am trying to build an application representing a led matrix (or many of them) which are going to reakt on musik and flash the leds in sync with it.
My gui looks like this:
But after I play a song for a while, flashing the "leds" I get dead pixels…

David Berg
- 1,958
- 1
- 21
- 37
1
vote
0 answers
How do I stop sound chopping in Processing while using Minim?
I have been working on the piece of code below in Processing using the sound library Minim, and have been trying to stop the audio recorded into the program from chopping the sound, rendering it somewhat unaudible.
Setup():
import…

MrLumme
- 11
- 1
1
vote
0 answers
Processing Minim | .loop() delay issue
I am currently making a very simple game, and I'm trying to add the music. The "theme" is a loop I created, but when I run the game there is a 1 second delay between the end of 1 loop and the start of the next one. I have tried changing the format…

Fechulo
- 21
- 1
1
vote
0 answers
FFT to compare two audio Files
I am using the minim library in processing which is able to give me the FFT of an audio file. How can I use that data to compare it with another audio file and output the similarity of the two audio files ?

mario.borg
- 141
- 1
- 8
1
vote
0 answers
Sound Effects on Samples in Minim
So I'm trying to put a Delay, Tremolo, and other effects on a audio sample in Minim.
I can easily have these effects manipulate a generated signal using the documentation, but I can't seem to wrap my head around how to get the effects to work on…

Travis
- 19
- 4
1
vote
0 answers
Prossesing.org Minim input Serial
I have set up an arduino with an electret microphone plugged into its analog input. Then I sent serial data over usb cable to processing.
Am trying to get minim(from processing.org library) to read this Serial data and perfom a spectrum analysis.…

Rooid
- 11
- 2
1
vote
2 answers
Create a self updating string based on files in a folder in Processing
Alright, so I was messing around with a simple fft visualization in Processing and thought it would be fun to have more than just one song playing every time. In the end I added 3 songs manually and on mouse click change between the songs randomly…

Philippe H
- 13
- 3
1
vote
1 answer
Beat/Hz detection in processing.js and minim.js not working
I just wrote my second Processing script and I'm trying to get it in an HTML5 page. My script detects the intensities of frequencies from an input song (mp3) and assigns each frequency to a hue range of an image to animate the image. I've included…

ted
- 13
- 2
1
vote
1 answer
Processing standard audio output
Is it possible to, with the use of Processing and Minim (or other libraries / languages), create an AudioInput like object to monitor any and all audio output?
For example I am working on a visualizer of sorts, but would like to allow another…

walshie4
- 1,396
- 2
- 11
- 16
1
vote
1 answer
Adding import button to music player
I'm trying to make it possible to make a functional import button, by this I mean I click the button, the file browser pops up and I can click a song then the player can play it. Just like any other music player. Here is a basic view of my code so…

user3423784
- 47
- 6
1
vote
1 answer
How does one produce Double Speed sound...programmatically?
I'm doodling about with the Minim library of Processing, manipulating audio buffers myself to playback sounds, play in reverseetc.
But I wonder - how does one play a sound at twice speed or half speed, without manipulating the sampling rate? Do they…

PinkElephantsOnParade
- 6,452
- 12
- 53
- 91
1
vote
2 answers
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 there is no other, simpler way to control the audio…

nbuechi
- 229
- 4
- 20