[ffmpeg] Correctly encode paths on Windows
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 9 Jan 2015 18:02:06 +0000 (19:02 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 9 Jan 2015 18:02:07 +0000 (19:02 +0100)
commitb0e87c311078cf8510c720d50d4960a87f43296b
tree9993dae0fd7aab7fe5bc5bcc57d4f642da357c05
parentc0bdf32a3cb0f6a08ba92cb5261d020ef2f61892
[ffmpeg] Correctly encode paths on Windows

On Python 2.x on Windows, if there are any unicode arguments in the command argument list, the whole list is converted to unicode internally.
Therefore, we need to call encodeArgument on every argument.

Fixes #4337 and #4668.
youtube_dl/postprocessor/ffmpeg.py