Replies: 5 comments 2 replies
-
Instead of adding a new |
Beta Was this translation helpful? Give feedback.
-
Here. It works also if somebody used
|
Beta Was this translation helpful? Give feedback.
-
Since a clean synth has been created, just before the first MIDI is being played, I see no use-case to reset the synth again. I do consider it more as a bug, as it undoes changes made by the user command file. |
Beta Was this translation helpful? Give feedback.
-
Yes. Also, moving the check for |
Beta Was this translation helpful? Give feedback.
-
Ok, thanks for your feedback. I'll prepare a PR to address this. |
Beta Was this translation helpful? Give feedback.
-
While investigating #102 I wondered why certain commands I added to a user command file had no effect on the MIDI file that I tried to play. Later I noticed that I stumbled (yet again) over the fact that the player resets the synth before each MIDI song by default, and that adding
-o player.reset-synth=0
solves that problem. And then I remembered that we had quite a few support requests in the past where users wondered why their commands were ignored, and were told to unset the reset-synth option.That made me wonder: is there a use-case for a synth reset before the first song? I can understand why we would need a reset between songs (and the variable name
reset_synth_between_songs
seems to reflect this), but why before the first one?If there is no real use-case, then I would propose changing that behaviour. I think it would be quite easy, for example by adding a new
is_between_songs
member tofluid_player_t
that gets set after the first check forreset_synth_between_songs
:Beta Was this translation helpful? Give feedback.
All reactions