This commit is contained in:
Zen 2020-12-01 14:27:21 +02:00
parent b26ee2e700
commit 756b409443
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@ def call_vmaf(chunk: Chunk, encoded: Path, n_threads, model, res,
ffmpeg_gen_pipe = subprocess.Popen(chunk.ffmpeg_gen_cmd, stdout=PIPE, stderr=STDOUT) ffmpeg_gen_pipe = subprocess.Popen(chunk.ffmpeg_gen_cmd, stdout=PIPE, stderr=STDOUT)
pipe = subprocess.Popen(cmd, stdin=ffmpeg_gen_pipe.stdout, pipe = subprocess.Popen(cmd, stdin=ffmpeg_gen_pipe.stdout,
stdout=PIPE, stderr=STDOUT, universal_newlines=True) stdout=PIPE, stderr=STDOUT, universal_newlines=True)
process_pipe(pipe) process_pipe(pipe, chunk)
return fl_path return fl_path

View file

@ -13,7 +13,7 @@ REQUIRES = [
with open("README.md", "r") as f: with open("README.md", "r") as f:
long_description = f.read() long_description = f.read()
version = "4" version = "4.2"
setuptools.setup( setuptools.setup(
name="Av1an", name="Av1an",