Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. general =
  2. {
  3. name = "My Big Speakers"; // or whatever you want
  4. // This next one can be "basic" or "soxr" (which takes twice as much CPU)
  5. // Start with soxr and change to basic if you get skipping.
  6. interpolation = "soxr";
  7. output_backend = "alsa";
  8. mdns_backend = "avahi";
  9. log_verbosity = 0; // only set this if you need to debug a problem. max is 3. 2 is useful
  10. playback_mode = "stereo"; // should be default but I set it anyway just to be sure
  11. }
  12.  
  13. sessioncontrol =
  14. {
  15. allow_session_interruption = "yes"; // optional but can be useful if it thinks its connected but isn't
  16. }
  17.  
  18. alsa =
  19. {
  20. output_device = "default";
  21. // This next one is important because the default doesn't work and
  22. // if not set your volume control will be done
  23. // by scaling the samples, lowering the effective bits per sample.
  24. mixer_control_name = "Power Amplifier";
  25. // Raise this if you need to for some reason, but you may get lag adjusting volume. Max is 66150
  26. audio_backend_buffer_desired_length = 6615;
  27. // I had problems getting ALSA errors and skips when I tried to use synchronization,
  28. // so I'm recommending "no" if you don't need to synchronize multiple outputs.
  29. // You can try "yes" but disable this first if you get skipping.
  30. disable_synchronization = "no";
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement