View Single Post
Old 08-22-2018, 09:12 AM   #63
Glennbo
Human being with feelings
 
Glennbo's Avatar
 
Join Date: Mar 2008
Location: Planet Earth
Posts: 9,055
Default

Quote:
Originally Posted by Jack Winter View Post
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.
---

Quote:
Can you confirm that "/usr/bin/jackd -R -dalsa -dhw:M2496 -r44100 -p128 -n2 -Xseq" starts JACK on the primary card, and "/usr/bin/jackd -R -dalsa -dhw:M2496_1 -r44100 -p128 -n2 -Xseq" on the secondary card?
From the other post, yes both those commands fire up jack as expected, and the typo was indeed a typo.

Both variations of the newest .asoundrc generated the following.

jackdmp 1.9.12
Copyright 2001-2005 Paul Davis and others.
Copyright 2004-2016 Grame.
Copyright 2016-2017 Filipe Coelho.
jackdmp comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details
no message buffer overruns
no message buffer overruns
no message buffer overruns
JACK server starting in realtime mode with priority 80
self-connect-mode is "Don't restrict self connect requests"
audio_reservation_init
Acquire audio card Audio1
creating alsa driver ... Multi|Multi|64|2|44100|0|0|nomon|swmeter|-|32bit
ALSA: Cannot open PCM device alsa_pcm for playback. Falling back to capture-only mode
Released audio card Audio1
audio_reservation_finish
Cannot initialize driver
JackServer::Open failed with -1
Failed to open server
__________________
Glennbo
Hear My Music - Click Me!!!
--
Glennbo is offline   Reply With Quote