Advertisement
metalx1000

Making and saving audio and midi connections - JACKD - ALSA

Dec 18th, 2014
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.64 KB | None | 0 0
  1. #start zynaddsubfx with no GUI and load saved master file
  2. #zynaddsubfx -U -l master.xmz
  3.  
  4. #same, but loads just an instrument
  5. zynaddsubfx -U -L "/usr/share/zynaddsubfx/banks/Choir and Voice/0008-Choir Pad4.xiz"
  6.  
  7. #connect zynaddsubfx to system out for sound
  8. jack_connect zynaddsubfx:out_1 system:playback_1
  9. jack_connect zynaddsubfx:out_2 system:playback_2
  10.  
  11. #list all midi inputs and outputs
  12. #aconnect -l
  13. #connect USB Keyboard to ZynAddSubFX
  14. aconnect USB\ Oxygen\ 61 ZynAddSubFX
  15.  
  16. #store connections - creates an xml file
  17. #sudo apt-get install aj-snapshot
  18. aj-snapshot my_connections
  19.  
  20. #restore connections
  21. aj-snapshot -r my_connections
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement