YomikoR/VapourSynth-Editor

Encode video does not work

jones1913 opened this issue · 2 comments

Hey, encode video does not work for me, error message in log is: Encoder wouldn't start.
System is Manjaro Linux.

I suspect it has to do with process.start signature:

m_process.start(commandLine, QStringList());

It works when I replace it with:
m_process.start(executable, decodedArguments.split(" "));

but only if target path contains no spaces. So I guess a proper fix is required...

Could you check if the latest commit works for you?

Yeah it works now, thank you.