This commit is contained in:
Sam Lavigne 2023-08-18 17:29:08 -04:00
parent 94279a0265
commit fbecacf0b6
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ def get_names():
parts = re.split(r" +", l)
filter_meta = parts[0]
filter_name = parts[1]
filter_type = parts[3]
filter_type = parts[2]
description = " ".join(parts[3:])
item = {

View File

@ -43,7 +43,7 @@
let out = `ffmpeg ${cInputs}`;
if (cFilters) out += `-vf "${cFilters}"`;
if (cFilters) out += ` -filter_complex "${cFilters}"`;
out += ` ${cOutput}`;