File: poly_mono_4.txt

package info (click to toggle)
fluidsynth 2.4.4%2Bdfsg-1%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,328 kB
  • sloc: ansic: 43,529; cpp: 1,434; xml: 1,020; makefile: 71; sh: 46
file content (25 lines) | stat: -rw-r--r-- 977 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# How to change an actual basic channel and add a new one ?
# ---------------------------------------------------------
# Note that command setbasicchannels allows to add or change
# groups of basics channels.
# 
# Note also that the commands allows this for more than one
# groups executing only one command:

# The following command restores Group 1 to the state:
# -Group 1:Basic channel:  5, poly omni off(mode 2), nbr:  1
# Then adds a new group:
# -Group 0:Basic channel:  2, mono omni on(mode 1), composed of 3 possible channels in this group 

#First use the command resetbasicchannels to clear the group intended to be changed.
resetbasicchannels 5

# Use command setbasicchannels to change a group and add a new one, using numbered mode 2 and 1:
setbasicchannels    5  2  0    2  1  3
# or using named mode:
# setbasicchannels    5  poly_omnioff 0    2  mono_omnion 3

# Use basicchannels command to verify your settings
basicchannels

# end