1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00

Removed otiose if statement

This commit is contained in:
iwconfig 2020-01-03 19:21:31 +01:00 committed by Johan Andersson
parent 19d63f1eb9
commit 0e0363b5cb

View File

@ -210,8 +210,8 @@ def get_one_media(stream):
if fstream.config.get("no_postprocess") is True or all(fstream.config.get(x) for x in ["no_remux", "no_merge"]) is True:
logging.info("All done. Not postprocessing files, leaving them completely untouched.")
return
if fstream.config.get("no_postprocess") is False:
post = postprocess(fstream, fstream.config, subfixes)
if fstream.audio and not post.detect and fstream.finished:
logging.warning("Can't find ffmpeg/avconv. audio and video is in seperate files. if you dont want this use -P hls or hds")