Record what you Play (Recording the output)

Status
Not open for further replies.

PrincePaul

New member
Hi To all, I want to record the output of the audio board, what i am actually hearing through the headphones.
For exemple, with the synth guitar tutorial, how can i record what i play without any qualiy loss ?

For now i made a metal jumper beetween line out and line in , by connecting the R and L (As attached). But i was thinking if there was a "Digital" way to record in a most efficient way, whitout any quality loss.

Thanks.

Eric
 

Attachments

  • 12767-03_600x600.jpg
    12767-03_600x600.jpg
    119 KB · Views: 89
I would sort of assume that you could make a patchcord from an output to a recording input in the audio library?
 
Hi, i try to add a Patchcord but it didnt work

This is a bit of my code,:

AudioInputI2S i2s2;
AudioRecordQueue queue1;
AudioPlaySdWav playWav1;
AudioPlaySdWav playWav2;
AudioPlaySdWav playWav3;
AudioPlaySdWav playWav4;
AudioMixer4 mix1;
AudioOutputI2S headphones;
AudioOutputAnalog dac;


AudioConnection c1(playWav1, 0, mix1, 0);
AudioConnection c2(playWav2, 0, mix1, 1);
AudioConnection c3(playWav3, 0, mix1, 2);
AudioConnection c4(playWav4, 0, mix1, 3);
AudioConnection c11(mix1, 0, headphones, 0);
AudioConnection c12(mix1, 0, headphones, 1);
AudioConnection c13(mix1, 0, dac, 0);
AudioConnection c14(i2s2, 0, queue1, 0);

And i added this line :

AudioConnection c15(headphones, 0, i2s2, 0);

Thanks,

Eric
 
The headphones don't have an output. I was more thinking something like
AudioConnection c11(mix1, 0, i2s2, 0);

which would run a copy of mix1's output 0 to i2s2's input 0. I think.
 
The headphones don't have an output. I was more thinking something like
AudioConnection c11(mix1, 0, i2s2, 0);

which would run a copy of mix1's output 0 to i2s2's input 0. I think.

I try to add this connection but it doesn't seems to work, i think the i2s2 doesn't have an Audio connection patchcord imput.
 
Status
Not open for further replies.
Back
Top