-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 [BUG] Loud noise when switching FluidSynth soundfonts #247
Comments
What's happening here is that disk I/O blocks everything else, and the incoming MIDI gets buffered up, then instantly dumped on the synth when disk I/O is done, i.e. you might get a few dozen Note-Ons all at once. Should be an easy fix, I can just clear all the MIDI buffers after a SoundFont switch is done. N.B. you shouldn't really be doing this. All the instruments and parameters are reset on switching and you'll be treated to an orchestra of pianos if you're hopping betweens synths and SoundFonts while a song is playing. This is by-design and won't be fixed. |
Hardware and software
Bug description
If you use the MiSTer OSD to change the SoundFont while the mt32-pi is playing music (over HDMI), there's a short, LOUD blast of noise that sounds like residual buffered audio data leftover from the previous SoundFont.
Steps to reproduce
Expected behavior
No loud garbage noise when switching among SoundFonts or when switching back and forth between Munt and FluidSynth modes.
Configuration file
Videos/audio recordings
I can provide a short video later if needed.
Additional information
n/a
The text was updated successfully, but these errors were encountered: