removed dead vmaf code

This commit is contained in:
Zen 2021-05-11 08:08:08 +03:00
parent d3469a7f7b
commit 4eff87980a

View file

@ -83,30 +83,6 @@ class VMAF:
fl = json.load(f) fl = json.load(f)
return fl return fl
def get_vmaf_motion(self):
"""
Runs vmaf_motion filter on chunk and returns average score
"""
cmd = [
"ffmpeg",
"-loglevel",
"error",
"-y",
"-hide_banner",
"-r",
"60",
"-i",
"-",
"-vf",
"vmafmotion",
"-f",
"null",
"-",
]
print(cmd)
def call_vmaf( def call_vmaf(
self, chunk: Chunk, encoded: Path, vmaf_rate: int = None, fl_path: Path = None self, chunk: Chunk, encoded: Path, vmaf_rate: int = None, fl_path: Path = None
): ):