Replies: 1 comment 3 replies
-
Currently, you can't. If a custom portname is given, it will be used for all ALSA ports. fluidsynth/src/drivers/fluid_alsa.c Lines 1119 to 1126 in 8eaa91b Changing it should be straight forward. Provided that you don't need the ability to customize the "distinctiveness" of the portnames. I would suggest to simply use:
Let me know your preference. I think I'll have time for that over Christmas holidays. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When i start FluidSynth with:
FluidSynth create a midi port with a name like
Synth input port (75216:0)
but the number change on each run.So I use
--portname
to force a fixed name:fluidsynth --portname "my midi synth" ./sf2/FluidR3_GM.sf2
I get
my midi synth
as port nameNow I want more than 16 channels so i use
--midi-channels
.If I use it without port name:
I get two distinct random port name like:
If I add
--portname
:fluidsynth --midi-channels 32 --portname 'my midi synth' ./sf2/FluidR3_GM.sf2
I get two identical port name:
how can I get several midi ports with static distinct port name ?
Beta Was this translation helpful? Give feedback.
All reactions