View Single Post
Old 08-22-2018, 08:57 AM   #60
Jack Winter
Human being with feelings
 
Jack Winter's Avatar
 
Join Date: Aug 2007
Location: Luxembourg/Spain
Posts: 1,922
Default

Hah, got it!

Try this in ~/.asoundrc

Code:
pcm.Multi {
    type multi;
    slaves.a.pcm hw:M2496
    slaves.a.channels 2;
    slaves.b.pcm hw:M2496_1
    slaves.b.channels 2;
    bindings.0.slave a;
    bindings.0.channel 0;
    bindings.1.slave a;
    bindings.1.channel 1;
    bindings.2.slave b;
    bindings.2.channel 0;
    bindings.3.slave b;
    bindings.3.channel 1;
}

ctl.Multi
{
    type hw
    card M2496
}
And then to start jack: /usr/bin/jackd -P80 -S -dalsa -d Multi -r44100 -p64 -n2 -Xseq

And if that doesn't work, try:
Code:
pcm.Multi {
    type multi;
    slaves.a.pcm hw:1
    slaves.a.channels 2;
    slaves.b.pcm hw:3
    slaves.b.channels 2;
    bindings.0.slave a;
    bindings.0.channel 0;
    bindings.1.slave a;
    bindings.1.channel 1;
    bindings.2.slave b;
    bindings.2.channel 0;
    bindings.3.slave b;
    bindings.3.channel 1;
}

ctl.Multi
{
    type hw
    card 1
}
And the same command line to start jack.

The first version would be the preferred one. If it works you should be able to put the command line back into the reaper prefs.
__________________
Reaper for Linux Documentation (WIP). Software: Archlinux/KDE, Fabfilter FX, Komplete 8, Nebula, Schwa/Stillwell, T-racks Max/Amplitube/SVX, etc. Gear: i7-2600k/4700HQ/16GB, RME Multiface/Babyface, Behringer X32, Genelec 8040, etc. :)
Jack Winter is offline   Reply With Quote