Advertisement
Guest User

Untitled

a guest
Apr 9th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. # .asoundrc
  2. pcm.multi {
  3. type route;
  4. slave.pcm {
  5. type multi;
  6. slaves.a.pcm "output";
  7. slaves.b.pcm "loopin";
  8. slaves.a.channels 2;
  9. slaves.b.channels 2;
  10. bindings.0.slave a;
  11. bindings.0.channel 0;
  12. bindings.1.slave a;
  13. bindings.1.channel 1;
  14. bindings.2.slave b;
  15. bindings.2.channel 0;
  16. bindings.3.slave b;
  17. bindings.3.channel 1;
  18. }
  19.  
  20. ttable.0.0 1;
  21. ttable.1.1 1;
  22. ttable.0.2 1;
  23. ttable.1.3 1;
  24. }
  25.  
  26. pcm.!default {
  27. type plug
  28. slave.pcm "output"
  29. }
  30.  
  31. pcm.output {
  32. type hw
  33. card 2
  34. }
  35.  
  36. pcm.loopin {
  37. type plug
  38. slave.pcm "hw:Loopback,0,0"
  39. }
  40.  
  41. pcm.loopout {
  42. type plug
  43. slave.pcm "hw:Loopback,2,0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement