Psycojoker / prosopopee

a static website generator to make beautiful customizable pictures galleries that tell a story
http://prosopopee.readthedocs.org
GNU General Public License v3.0
327 stars 56 forks source link

fix handling videos with spaces in filename #117

Closed gangelop closed 3 years ago

gangelop commented 4 years ago

Video conversion failed at multiple points due to filenames being split at whitespace. This commit fixes all the failure points I was able to identify.

resolves #116

Psycojoker commented 3 years ago

I think we should probably switch to the subprocess using a list instead of string concatenation (which kinda sucks and won't handle all cases like video name with ' in them here) but that's already way better than the existing situation, thx!