From 7e6a27ac803f3ee859d15ae567cf1e88b2400890 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 11 Jun 2022 11:32:34 -0400 Subject: [PATCH] Ensure -filters is in the specials list too --- rffmpeg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rffmpeg.py b/rffmpeg.py index 4f59438..dee108a 100755 --- a/rffmpeg.py +++ b/rffmpeg.py @@ -258,7 +258,7 @@ def setup_remote_command(target_host): # Determine if version, encorders, or decoders is an argument; if so, we output stdout to stdout # Weird workaround for something Jellyfin requires... - specials = ["-version", "-encoders", "-decoders", "-hwaccels", "-h"] + specials = ["-version", "-encoders", "-decoders", "-hwaccels", "-filters", "-h"] if any(item in specials for item in cli_ffmpeg_args): stdout = sys.stdout @@ -306,7 +306,7 @@ def run_local_ffmpeg(): # Determine if version, encorders, or decoders is an argument; if so, we output stdout to stdout # Weird workaround for something Jellyfin requires... - specials = ["-version", "-encoders", "-decoders", "-hwaccels", "-h"] + specials = ["-version", "-encoders", "-decoders", "-hwaccels", "-filters", "-h"] if any(item in specials for item in cli_ffmpeg_args): stdout = sys.stdout