Minim is an audio library for processing environment.
Questions tagged [minim]
95 questions
2
votes
1 answer
JMF with Processing - audio visualizer
I have this awesome audio visualizer created with Processing 2.0a5 with the minim library, which uses fft to analyze the audio data.
import ddf.minim.*;
import ddf.minim.analysis.*;
Minim minim;
AudioPlayer song;
FFT fft;
int col=0; // color,…

Dante Cullari
- 769
- 13
- 21
2
votes
1 answer
get frenquencies in Processing with Minim
I try to get frequencies from microphone using Processing. I have mix two examples from the doc, but "highest" is not really in Hz (a is 440 Hz).
Do you know how to have something better than this ?
import ddf.minim.*;
import…

benoît
- 1,473
- 3
- 13
- 31
1
vote
0 answers
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 advice.
Thanks in advance..
==== JavaSound Minim Error…

champ
- 11
- 2
1
vote
0 answers
getLineIn() in Minim doesn't work with Processing
Problem
I'm trying Minim with Processing.
I tried MonitorInput.pde and other samples I found on the internet but getLineIn() doesn't work no matter how big sound. However, the console shows me no errors.
Because of Catalina?
I use macOS Catalina…

Takaya Ogawa
- 11
- 2
1
vote
0 answers
How to input test data set in this processing code?
I'm a undergraduate Biomedical Engineering , only a beginner in coding. I was trying to understand this BCI code written in processing and wanted to input an EEG eye movement dataset rather than the microphone jack input . I can't figure out how to…

Aditya Dutta
- 11
- 1
1
vote
2 answers
How to create a translucent audio-reactive overlay with Processing?
I've researched this question far and wide, but I can't find any useful answers. Basically, I want to create a translucent (or semi-transparent) audio-reactive overlay which can be transposed onto a generic video file. The idea is to give the video…

Lichtung
- 133
- 2
- 12
1
vote
1 answer
publish processing sketch using external libraries on a web page
I wish to learn how to run a Processing sketch using external libraries like HYPE and MINIM on a web page. I am able to run a sketch that does not use an external library successfully after reading the basic tutorial. But not with external…

Ujjwal Agarwal
- 11
- 1
1
vote
0 answers
minim processing TickRate not working
Can't seem to get TickRate to change when playing back sample, when playing sample with 's' or 'd' key, both play at the same rate, trying to make it so that when playing different keys it will play a different pitch of the recorded sound like a…

michael doherty
- 21
- 3
1
vote
1 answer
problems with minim and processing
trying to create a sound sampler that can play a recorded sample at different frequencies/rates and am using TickRate to change the rate of playback, similar to the TickRate example. when i run i get a NullPointerException here…

michael doherty
- 21
- 3
1
vote
0 answers
Example for BeatDetect Minim
I am using this code to record the current sound. I need now some processing to detect the beat from music. I want a LED go on/off according the incoming music. I think BeatDetect is an useful library for my project, however I cannot find a good…

tomhogenkamp
- 83
- 1
- 11
1
vote
1 answer
Error:Gradle: ...while parsing ddf/minim/AudioBuffer.class
I'm using Android 2.2 and I can't compile into app because of an error
-Error:Gradle: unsupported class file version 52.0
-Error:Gradle: ...while parsing ddf/minim/AudioBuffer.class
It is made on processing.
apply plugin:…

vNeanderthal Cruz
- 11
- 5
1
vote
1 answer
how to make two FFT objects for the left and right channel with the minim library for processing
I have the following code that creates an FFT object from an audio file
see the code below:
import ddf.minim.*;
import ddf.minim.analysis.*;
Minim minim;
AudioPlayer player;
FFT fft;
void setup(){
minim = new Minim(this);
player…

FutureCake
- 2,614
- 3
- 27
- 70
1
vote
1 answer
Using Minim library in Java. Couldn't get the helper class working
I'm using the Minim 2.2.0 library with JAVA. The library requires us to define a helper class defining two methods and pass an object of this class to the Minim constructor. I wrote the MinimHelper class as follows.
public class MinimHelper {
…

Martin Borugadda
- 25
- 7
1
vote
1 answer
Processing: How can I draw only every x frames?
I'm experimenting with the following Code:
//3D Spectrogram with Microphone Input
//Modified by kylejanzen 2011 - https://kylejanzen.wordpress.com
//Based on script written by John Locke 2011 - http://gracefulspoon.com
//Output .DXF file at any…

juliusklaus
- 59
- 9
1
vote
1 answer
Using serial information from arduino to play audio in Processing
I'm creating a program that takes serial information from an ultrasonic sensor/arduino and sends it to processing, which will play either crickets.mp3 or growl.mp3, depending on the value of the input.
crickets.mp3 is supposed to play if the value…

samseurynck
- 113
- 1
- 10