Minim is an audio library for processing environment.
Questions tagged [minim]
95 questions
1
vote
2 answers
minim loadFile before audio file is recorded/created
I am trying to create an app that would allow the user some sounds and then use this in a playback fashion.
I would like to have my application play a .wav file that the user will record.
I am having trouble figuring out how to code this, as I keep…

gJg
- 147
- 4
- 16
1
vote
3 answers
How to play only one audio file at a time in minim
Here is what I have:
2 buttons
2 sounds
when button 1 press I want sound 1 played when button 2 pressed i want only sound2 played.
My code:
import ddf.minim.*;
RadioButtons r;
boolean showGUI = false;
Minim minim;
AudioPlayer player_1;
AudioPlayer…

gJg
- 147
- 4
- 16
1
vote
1 answer
Exporting a Processing sketch with audio to JavaScript
How could I implement sound in my Processing sketch that works when I export the sketch to JavaScript?
I've written a sketch in Processing that includes two audio (.wav) loops. These loops are played through the Movie class upon mousePressed() and…

Danny
- 475
- 6
- 19
1
vote
0 answers
Analyze playing Sound (Levels, Volume etc.) with minim
I thoroughly searched for how to analyze the playing sound with minim but found no good results.
I'm using the following Software:
Eclipse Juno
Java 1.7.0_21-b11
Processing 2.0b9 Librarys
Minim 2.0.2 library only
I think of it as opening the…

Martin Eckleben
- 753
- 8
- 26
1
vote
1 answer
Note detection with processing and minim
I am trying to create a processing app that is able to detect musical notes from an instrument(guitar). If, for example, the open "A" note is played, I would like to do something based on that, like show the note on the screen or show an image.
I…

Roman Epicnerd Sharf
- 427
- 6
- 15
1
vote
1 answer
Arduino / Processing Play sound files when piezo knocks from an Arduino?
actually we're working on a project based on Arduino and Processing. To explain basically, we have multiple knock sensors (or piezzos). Our goal is to launch a sound file every time a piezzo is 'knocked' but we encountered some issues about getting…

Simon Bauchet
- 11
- 1
- 2
1
vote
1 answer
Don't understand isRange(int low, int high, int threshold) of Minim Library
I've seen a lot of programs with the function isRange(int low, int high, int threshold) but I can't understand how it works.
The doc says:
In frequency energy mode this returns true if at least threshold bands
of the bands included in the range…
user1069536
1
vote
0 answers
How can I use Minim in Processing for computing FFT of UDP-streamed samples?
I need to compute the FFT in real time on a stream. I receive packages with arrays of bytes through an UDP port. Is it possible to somehow convert them to a stream that Minim could analyze? I searched for a long time and found a few possible…

Kristina Novak
- 11
- 1
0
votes
1 answer
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 moment I'm having a hard time getting this to work.…

ddoonn
- 11
- 3
- 8
0
votes
3 answers
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.
But I don't know if the draw() loop specific of…

LaurentC
- 87
- 1
- 5
0
votes
1 answer
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!

user1026987
- 73
- 2
- 9
0
votes
1 answer
Inconsistent Access to JavaSound SourceDataLine Through Minim
I'm a not-so-knowledgeable person in the Linux world trying to understand an audio problem I have in a project. In short, I'm trying to get an audio output through a Java library called Minim (ddf.minim). I can get an output by listening to an input…

Shiromage
- 1
- 3
0
votes
1 answer
Inverse FFT in Processing Minim
I'm trying to output my computer microphone input to the speakers output using Minim in Processing. The aim of the project is to analyze an input (the microphone, a sound file, etc), make some alterations to its frequency spectrum, and finally…

Simone Scala
- 1
- 1
- 2
0
votes
0 answers
Frequencies in Processing with Minim and making Colours
This is my code:
import ddf.minim.*;
import ddf.minim.analysis.*;
Minim minim;
AudioPlayer player;
AudioMetaData meta;
BeatDetect beat;
float noiseMulti = 300;
int radius = 100;
float nScale = 200;
void setup() {
size(700, 700,…

Universal Duggal
- 11
- 3
0
votes
1 answer
How do I adjust Processing/Minim waveform scale?
I'm a total beginner so forgive me if this is probably silly or improper of me to ask.
I'm trying to make my own virtual oscillograph in processing. I don't really know how to explain it, but I want to "zoom out" from where I am getting the peaks in…

Kaneo
- 1
- 1