https://bugs.kde.org/show_bug.cgi?id=358161

--- Comment #11 from Jean-Baptiste Mardelle <j...@kdenlive.org> ---
Ok, then it really looks like you are hit by the locale bug I found, but I
don't understand why changing locale does not fix the issue with Kdenlive...

If you are comfortable with compiling, you could try my Movit patch to see if
it helps...

You need to edit the file init.cpp in Movit source directory with the following
changes:
Around line 382, you will find a line like this (in the function double
get_glsl_version ):

float glsl_version = atof(glsl_version_str);

Replace this line with the following 4 lines:

std::istringstream locale_convert(glsl_version_str);
locale_convert.imbue(std::locale("C"));
double glsl_version;
locale_convert >> glsl_version;

Then recompile and re-install movit. MLT's command line should work without the
LC_ALL trick, and it might fix the Kdenlive issue...

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to