Pedro López-Cabanillas

Results 74 comments of Pedro López-Cabanillas

If you want to help to better diagnose this issue, please: * Open a terminal window (cmd.exe) * at the system prompt ("C:\>"), type: CHCP, and post the answer from...

Your system uses [Code Page 932](https://en.wikipedia.org/wiki/Code_page_932_(Microsoft_Windows)) which is customary for Japanese language. Fluidsynth retrieves the names of the audio devices from Windows, and stores these names in options/settings, encoded in...

> seems to me that a QString::fromUtf8() is needed in: > > https://github.com/rncbc/qsynth/blob/936bedbb579ecb522c20f6988455f10c2d7a4bbd/src/qsynthSetupForm.cpp#L166-L167 > > like this? > > ```c++ > (pData->pListItem)->setText(iCol++, QString::fromUtf8(pszCurrent)); > (pData->pListItem)->setText(iCol++, QString::fromUtf8(pszDefault)); > ``` Why `fromUtf8()`...

> so it maybe a fluid_settings/windows blunder? does [1ec61bf](https://github.com/rncbc/qsynth/commit/1ec61bf) behave any better? I guess that your question is for @nanitaro but first you should ask him if he is able...

I take that back. I can do some tests on my Windows box. First, I've renamed my windows audio devices, to something very tricky: ![audio_devices_renamed](https://github.com/rncbc/qsynth/assets/15184708/fce7aa63-ed71-46f5-a563-74534cc86a3a) This is the output of...

> yeah right, but what if you change it to CP_UTF8 in fluidsynth's fluid_wasapi.c ? That any and all other windows programs linking to `libfluidsynth.dll`, not expecting Unicode in Fluidsynth...

It is not possible to set this parameter in the GUI, but you can set it on the command line: ``` $ flatpak run org.rncbc.qsynth -o synth.device-id=127 ``` ![image](https://github.com/rncbc/qsynth/assets/15184708/e37fb093-e499-4999-bd9f-895f9a43c2ae) To...

I leave the decision to @rncbc

> Expected behavior: Configure should have realized I don't have glib-2.0 and not tried to use it. The glib dependency is mandatory in FluidSynth. You cannot build FluidSynth without it,...

> Currently, in order to loop the playback of a MIDI file, the Loop option must first be chosen from the File menu. You can create a loop button in...