YomikoR / VapourSynth-Editor

Branch vse-previewer for standalone previewer. Branch vs-api4 for an IDE with a text editor. Branch master for "stability". Forked from https://bitbucket.org/mystery_keeper/vapoursynth-editor
Other
141 stars 10 forks source link

Encode video does not work #50

Closed jones1913 closed 1 year ago

jones1913 commented 1 year ago

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: https://github.com/YomikoR/VapourSynth-Editor/blob/ccd9b755e0e39af73900d0f2f337289511c741d6/common-src/jobs/job.cpp#L1345

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...

YomikoR commented 1 year ago

Could you check if the latest commit works for you?

jones1913 commented 1 year ago

Yeah it works now, thank you.