https://bugs.kde.org/show_bug.cgi?id=411970
--- Comment #2 from scu...@yahoo.de --- (In reply to scubbx from comment #1) > I also get this error. The language of my OS is "German". > The reason might be that the decimal separator value for SS used by Kdenlive > is a comma and not a dot as expected by ffmpeg. I looked around a bit and found the following in the source: ---- In the file src/jobs/cutclipjob.cpp the variable "startString" (used for extraction of the clip) is created by "m_in.seconds()" : QString startString = locale.toString(m_in.seconds()); ---- The same is true for the "durationString" in src/jobs/cutclipjob.cpp : QString durationString = locale.toString((m_out - m_in).seconds()); ---- Both of these variables are used to create the FFMPEG call for clipping in the file src/jobs/cutclipjob.cpp: QStringList params = {QStringLiteral("-y"),QStringLiteral("-stats"),QStringLiteral("-i"),m_sourceUrl,QStringLiteral("-v"),QStringLiteral("error"),QStringLiteral("-ss"),startString, QStringLiteral("-t"), durationString}; -- You are receiving this mail because: You are watching all bug changes.