minim, AudioOutput and AudioRecorder
in
Core Library Questions
•
5 months ago
Bonjour/Hi,
I made a sketch that loads a file with an AudioSnippet,
then i'am playing with it: play it, stop it, change its loop points...
All works very well even by running 3 of this sketch at the same time.
I want to record the audio output from each sketch separately.
Then:
AudioOutput out01;
AudioRecorder record01;
out01=minim.getLineOut(); // error here?
record01=minim.createRecorder(out01,"sauve.wav",false);
Get:
A file with the right length, format, name and all, but with no sound.
Although it works for an AudioInput.
Like the problem come with AudioOutput?
That i need is the audio stream that the sketch product by itself.
Is there a method to do that?
Salutations, cyrille.
I made a sketch that loads a file with an AudioSnippet,
then i'am playing with it: play it, stop it, change its loop points...
All works very well even by running 3 of this sketch at the same time.
I want to record the audio output from each sketch separately.
Then:
AudioOutput out01;
AudioRecorder record01;
out01=minim.getLineOut(); // error here?
record01=minim.createRecorder(out01,"sauve.wav",false);
Get:
A file with the right length, format, name and all, but with no sound.
Although it works for an AudioInput.
Like the problem come with AudioOutput?
That i need is the audio stream that the sketch product by itself.
Is there a method to do that?
Salutations, cyrille.
1