Fix issue with colons in file name

ffmpeg uses colons to define protocols, by prefixing the target with
file: this ambiguity is avoided.

issue #89
This commit is contained in:
Ivan Habunek 2022-02-05 09:24:44 +01:00
parent 15654291d7
commit 6ebe263f33
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95

View File

@ -58,7 +58,7 @@ def _join_vods(playlist_path, target, overwrite, video):
"-metadata", "encoded_by=twitch-dl",
"-stats",
"-loglevel", "warning",
target,
"file:{}".format(target),
]
if overwrite: