File: poly_mono_2.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 (22 lines) | stat: -rw-r--r-- 800 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
# How to add a new basic channel among others actual basic channels ?
# -------------------------------------------------------------------
# Perhaps you have already set several groups of basics channels and
# you want add a new one without modifying actual groups.
# Assuming following actual groups:

# Basic channel:  5, poly omni off(mode 2), nbr:  1
# Basic channel: 10, mono omni off(mode 3), nbr:  1

# Now we want to add  a new group 3: 
# Group 3 should have the following settings:
# basic channel 13, mode mono, omni off, (mode 3) composed of 2 channels.

# Use command setbasicchannels using numbered mode 3:
setbasicchannels 13 3 2
# or using named mode:
# setbasicchannels 13 mono_omnioff 2

Use basicchannels command to verify your settings
basicchannels

# end