Kevin Zander

Results 126 comments of Kevin Zander

Part of the libsndfile 1.1.0 changelog: > Use UTF-8 as internal path encoding on Windows platform. > > This is an internal change to unify and simplify the handling of...

But with libsndfile < 1.1.0 we'll need to handle it appropriately.

QString uses 16-bit QChar which is UTF-16. With the current code then we do UTF-16 -> std::string (as byte string), that should work right?

We're at a "it's complicated" point here. Apparently my linked version wasn't updated, so I was using a 1.2.0 or .1 DLL that was never actually updated with 1.2.2 one....

> @Veratil does #7162 fix this by any chance? Most likely not.

Yes, we can add custom fonts via ```cpp QFontDatabase::addApplicationFont("/path/to/font.ttf"); ```

I haven't checked, but does any of MuseScore's fonts contain the glyphs we're wanting? If so we may be able to use that.

> * How should we organize the file names It should be a single file, allowing us to utilize the `tr()` translation function. > * Qt Font Database does not...

LMMS isn't failing to import anything here actually. The way LMMS loads a MIDI currently is that a track is a MIDI channel. Everything is loaded into the `kontakt drums`...

I have a complete rewrite of MIDI import working on a local branch, removes our need for portsmf or any external library. It can also load "invalid" MIDIs by ignoring...