Advertisement
Guest User

ALSA -> JACK

a guest
Nov 23rd, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.50 KB | None | 0 0
  1. # in jack, be sure to send directly to "hw:0,0" or whatever
  2. # instead of the "default" ALSA output
  3.  
  4. pcm.rawjack {
  5.     type jack
  6.     playback_ports {
  7.         0 system:playback_1
  8.         1 system:playback_2
  9.     }
  10.     capture_ports {
  11.         0 system:capture_1
  12.         1 system:capture_2
  13.     }
  14. }
  15.  
  16. pcm.jack {
  17.     type plug
  18.     slave { pcm "rawjack" }
  19.     hint {
  20.         show on
  21.         description "JACK Audio Connection Kit"
  22.     }
  23. }
  24.  
  25. pcm.!default {
  26.     type plug
  27.     slave { pcm "jack" }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement