You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
just figured out that signals connected to the right input of GVerb always come out dry, doesn't matter the settings in use.
Does GVerb want mono signals as input?
If so, we should correct the example that uses adc => GVerb gverb
simple example:
GVerb gverb;
Impulse impulse;
//impulse => gverb.chan(0); // this works
impulse => gverb.chan(1); // this doesn't work properly
gverb => dac;
while (true)
{
impulse.next(1);
second => now;
}
The text was updated successfully, but these errors were encountered:
mariobuoninfante
changed the title
GVerb right | signal connected to right channel always comes out dry
GVerb | signal connected to right channel always comes out dry
Aug 18, 2019
just figured out that signals connected to the right input of GVerb always come out dry, doesn't matter the settings in use.
Does GVerb want mono signals as input?
If so, we should correct the example that uses
adc => GVerb gverb
simple example:
The text was updated successfully, but these errors were encountered: