Recorder record and loopback at the same time #29
-
|
Hi community, I want to record the microphone and the soundcard output at the same time. Setting AudioEngine capability to "Record | Loopback" (FlagsEnum) does not record anything. Setting capability to Record only works. Is there a way to combine both? For example pass a specific AudioEngine to the instantiated recorder (then I could instantiate two). Thanks for helping |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
|
Record from Microphone & Playback to soundcard is "Mixed" capability, which is supported. If it's the later case, then #26 is on my TODO as a start, and after that I can consider refactoring the Engine API to allow more than 1 instance. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the quick reply. |
Beta Was this translation helpful? Give feedback.
-
|
Ok, quick test, Mixed mode does not meet the requirements, and the recorded output is scratchy. |
Beta Was this translation helpful? Give feedback.
Record from Microphone & Playback to soundcard is "Mixed" capability, which is supported.
Record from Microphone & Record from System (whatever sound is playing) is "Record & Loopback" which isn't supported, as this requires 2 AudioEngines, one for normal recording and the other for system loopback.
If it's the later case, then #26 is on my TODO as a start, and after that I can consider refactoring the Engine API to allow more than 1 instance.