This commit is contained in:
Zen 2021-01-09 13:43:07 +02:00
parent 2cff88f767
commit 404585b39e
3 changed files with 5 additions and 5 deletions

View file

@ -141,6 +141,6 @@ class Args:
# Misc # Misc
misc_group = parser.add_argument_group('Misc') misc_group = parser.add_argument_group('Misc')
misc_group.add_argument('--version', action='version', version=f'Av1an version: {5.4}') misc_group.add_argument('--version', action='version', version=f'Av1an version: {5.5}')
# Initialize project with initial values # Initialize project with initial values
return parser return parser

View file

@ -1,5 +1,5 @@
import subprocess import subprocess
from subprocess import STDOUT, PIPE from subprocess import STDOUT, PIPE, DEVNULL
from math import isnan from math import isnan
from math import log as ln from math import log as ln
@ -202,8 +202,8 @@ def gen_probes_names(chunk: Chunk, q):
def make_pipes(ffmpeg_gen_cmd: Command, command: CommandPair): def make_pipes(ffmpeg_gen_cmd: Command, command: CommandPair):
ffmpeg_gen_pipe = subprocess.Popen(ffmpeg_gen_cmd, stdout=PIPE, stderr=STDOUT) ffmpeg_gen_pipe = subprocess.Popen(ffmpeg_gen_cmd, stdout=PIPE, stderr=DEVNULL)
ffmpeg_pipe = subprocess.Popen(command[0], stdin=ffmpeg_gen_pipe.stdout, stdout=PIPE, stderr=STDOUT) ffmpeg_pipe = subprocess.Popen(command[0], stdin=ffmpeg_gen_pipe.stdout, stdout=PIPE, stderr=DEVNULL)
pipe = subprocess.Popen(command[1], stdin=ffmpeg_pipe.stdout, stdout=PIPE, pipe = subprocess.Popen(command[1], stdin=ffmpeg_pipe.stdout, stdout=PIPE,
stderr=STDOUT, stderr=STDOUT,
universal_newlines=True) universal_newlines=True)

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 = "5.4" version = "5.4-1"
setuptools.setup( setuptools.setup(
name="Av1an", name="Av1an",