You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API function (tested with vtlSegmentSequenceToGesturalScore) can not load the input file if the respective paths contains chars such as 'ä,ö,ü,ß'. The same files work fine when renamed.
The text was updated successfully, but these errors were encountered:
The reason is that all strings are handled with (narrow) characters of type char. To properly handle special characters like ä or è we need to switch to unicode, which means wide characters of type wchar_t.
This is a larger change which will be handled soon™.
Nope. Like I said above, it's a bigger change than one might think, with a few implications regarding cross-platform compatibility on top. For the foreseeable future, please use paths without "special" characters.
API function (tested with vtlSegmentSequenceToGesturalScore) can not load the input file if the respective paths contains chars such as 'ä,ö,ü,ß'. The same files work fine when renamed.
The text was updated successfully, but these errors were encountered: