[postprocessor:exec] do not auto-add '{}' to command (#1185)

This was initially done to mimic youtube-dl's behavior and
implementation of --exec, and it seemed reasonable at the time.
pull/1195/head
Mike Fährmann 4 years ago
parent 0a3bbc9c63
commit e8c64dd961
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -30,8 +30,6 @@ class ExecPP(PostProcessor):
args = options["command"]
if isinstance(args, str):
if "{}" not in args:
args += " {}"
self.args = args
execute = self.exec_string
else:

Loading…
Cancel
Save