Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. ServerOptions.devices
  2.  
  3. // Seleziona l'interfaccia combinata (2 unità AES32)
  4. Server.options.device = "RME32CH";
  5.  
  6. // Attiva il primo anello
  7. // Server.local.options.numOutputBusChannels = 10;
  8.  
  9. // Attiva la cupola
  10. // Server.local.options.numOutputBusChannels = 22;
  11.  
  12. // Attiva la cupola con il SUB
  13. Server.local.options.numOutputBusChannels = 23;
  14. Server.internal.options.numOutputBusChannels = 23;
  15.  
  16. // 8 BUS provenienti dal mixer
  17. Server.local.options.numInputBusChannels = 8;
  18. Server.internal.options.numInputBusChannels = 8;
  19.  
  20. // Gestione del block size (default is 64)
  21. Server.local.options.blockSize = 64;
  22.  
  23. // Gestione Frequenza Campionamento (MIXER MASTER)
  24. Server.local.options.sampleRate = 48000;
  25.  
  26. s.reboot;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement