Minim: How to record Minim's output
in
Core Library Questions
•
1 year ago
Hello,
probably a very basic question, but i don't get it.
I simpy want to record Minim's output.
I found lots of examples how to record the input. And i thought the following code should work, but the recorded file contains just silence.
probably a very basic question, but i don't get it.
I simpy want to record Minim's output.
I found lots of examples how to record the input. And i thought the following code should work, but the recorded file contains just silence.
- out = minim.getLineOut();
- recorder = minim.createRecorder(out, "test.wav", true);
- recorder.beginRecord();
- ...
- recorder.endRecord();
- recorder.save();
Did i get something totally wrong?!
EDIT: The output of the program which i want to record is produced by an array of AudioPlayers.
I see that AudioPlayer implements recordable, so it should be possible to record a single AudioPlayer, which is not the solution of the problem...
Anyway, i am looking for a solution to record any audio-output, no matter how it was produced...
I see that AudioPlayer implements recordable, so it should be possible to record a single AudioPlayer, which is not the solution of the problem...
Anyway, i am looking for a solution to record any audio-output, no matter how it was produced...
1