Advertisement
Guest User

Untitled

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