mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-30 16:01:51 +00:00
Fix typos in LADSPA documentation
This commit is contained in:
parent
2984c0b40a
commit
37d44ce847
1 changed files with 7 additions and 9 deletions
|
@ -266,8 +266,8 @@ Create a new audio buffer called `<buffer-name>`. The buffer is able to be used
|
||||||
mono output or mono input to an effect. Buffers can be used to connect plugins
|
mono output or mono input to an effect. Buffers can be used to connect plugins
|
||||||
between each other without overwriting the host ports with temporary data.
|
between each other without overwriting the host ports with temporary data.
|
||||||
|
|
||||||
Please note that there is not command to delete a buffer. To remove buffers,
|
Please note that there is no command to delete a buffer. To remove buffers,
|
||||||
please use `ladspa_reset` to clear everything start from scratch.
|
please use `ladspa_reset` to clear everything and start from scratch.
|
||||||
|
|
||||||
Can only be used when the effect unit is not active.
|
Can only be used when the effect unit is not active.
|
||||||
|
|
||||||
|
@ -281,8 +281,8 @@ Connects an effect input or output port with a buffer or a host port. This
|
||||||
command can be called multiple times and will overwrite the previous connection
|
command can be called multiple times and will overwrite the previous connection
|
||||||
made on that effect port.
|
made on that effect port.
|
||||||
|
|
||||||
Please note that there is not command to unlink an effect port. Use
|
Please note that there is no command to unlink an effect port. Use
|
||||||
`ladspa_reset` to clear everything start from scratch.
|
`ladspa_reset` to clear everything and start from scratch.
|
||||||
|
|
||||||
Can only be used when the effect unit is not active.
|
Can only be used when the effect unit is not active.
|
||||||
|
|
||||||
|
@ -401,11 +401,9 @@ ladspa_link e1 "Output Right" Main:R
|
||||||
ladspa_start
|
ladspa_start
|
||||||
```
|
```
|
||||||
|
|
||||||
And start FluidSynth with the internal reverb disabled:
|
And start FluidSynth with the internal reverb disabled. (You will need to
|
||||||
```
|
replace the `test.mid` with your own MIDI file and maybe change the paths to
|
||||||
```
|
the effects.txt file and the SoundFont)
|
||||||
(You will need to replace the `test.mid` with your own MIDI file and maybe
|
|
||||||
change the paths to the effects.txt file and the SoundFont)
|
|
||||||
|
|
||||||
```
|
```
|
||||||
user@host:$ fluidsynth -a alsa -R0 -o synth.ladspa.active=1 -f effects.txt FluidR3_GM.sf2 test.mid
|
user@host:$ fluidsynth -a alsa -R0 -o synth.ladspa.active=1 -f effects.txt FluidR3_GM.sf2 test.mid
|
||||||
|
|
Loading…
Reference in a new issue