Is there anyone with a working type share setup, allowing to play soundfiles
simultaniously to different channel.
The documentation, tells me I can't use the same channel twice, thats fine,
but it seems I can't even use different channels.
The output is send to the correct channels, just the second play command ( going to
a different share ) waits for the first to finish.
Any pointers to how to get this working?
 
Thanks!
 
Jean-Paul
 
 
[Part of my asoundrc]
 
pcm.rme96_0 {
    type hw
    card 0
    device 1
}
 
pcm_slave.slave_rme96_stereo_all {
    pcm rme96_stereo_all
    channels 8
}
 
pcm.sharerme96_stereo_1 {
    type share
    slave slave_rme96_stereo_all
    bindings {
        0 0
        1 1
    }
}

pcm.sharerme96_stereo_2 {
    type share
    slave slave_rme96_stereo_all
    bindings {
        0 3
        1 4
    }
}
 
pcm.rme96_stereo_all {
    type multi;
    slaves.a.pcm rme96_0;
    slaves.a.channels 8;
    bindings.0.slave a;
    bindings.0.channel 0;
    bindings.1.slave a;
    bindings.1.channel 1;
    bindings.2.slave a;
    bindings.2.channel 2;
    bindings.3.slave a;
    bindings.3.channel 3;
    bindings.4.slave a;
    bindings.4.channel 4;
    bindings.5.slave a;
    bindings.5.channel 5;
    bindings.6.slave a;
    bindings.6.channel 6;
    bindings.7.slave a;
    bindings.7.channel 7;
}
 

Reply via email to