mirror of
https://github.com/joshuaboniface/rffmpeg.git
synced 2026-01-23 02:24:03 +00:00
Ensure -filters is in the specials list too
This commit is contained in:
parent
7a1caeffe0
commit
7e6a27ac80
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue