timidity.conf.d 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # TIMIDITY_OPTS
  2. # Command line arguements to be passed to timidity. -iA is always used
  3. # Common options:
  4. # -Os : Output to ALSA pcm device
  5. # -Oe : Output to esd
  6. # -On : Output to NAS
  7. # -Oj : Output to JACK
  8. #
  9. # -B<n>,<m> : Set number of buffer fragments(n), and buffer size(2^m)
  10. #
  11. # -EFreverb=0 : Disable MIDI reverb effect control
  12. # -EFreverb=1[,level] : Enable MIDI reverb effect control
  13. # "level" is optional to specify reverb level [0..127]
  14. # This effect is only available in stereo
  15. # (default)
  16. # -EFreverb=2 : Global reverb effect
  17. TIMIDITY_OPTS="-B2,8 -Os -EFreverb=0 -EFchorus=0"
  18. # USE_ESOUND
  19. # if you want to use esound, make this option yes and set the correct TIMIDITY_OPTS
  20. USE_ESOUND="no"
  21. # PATCHSET
  22. # Define the sound patch set that timidity will use. Default is shompatches.
  23. PATCHSET="shompatches"
  24. # TIMIDITY_PCM_NAME
  25. # This option can be used to choose an alternate ALSA pcm device. This will
  26. # be most useful for users of the dmix alsa plugin or those with multiple
  27. # cards. If you don't know what this is, chances are you want the default.
  28. # default alsa device fails to work as a service, since pulseaudio is not reachable
  29. # from the service scripts' environment. Workaround with using hw:0
  30. #TIMIDITY_PCM_NAME="default"
  31. TIMIDITY_PCM_NAME="hw:0"