mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
+1
This commit is contained in:
parent
2cff88f767
commit
404585b39e
3 changed files with 5 additions and 5 deletions
|
@ -141,6 +141,6 @@ class Args:
|
|||
|
||||
# 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
|
||||
return parser
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import subprocess
|
||||
from subprocess import STDOUT, PIPE
|
||||
from subprocess import STDOUT, PIPE, DEVNULL
|
||||
|
||||
from math import isnan
|
||||
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):
|
||||
ffmpeg_gen_pipe = subprocess.Popen(ffmpeg_gen_cmd, stdout=PIPE, stderr=STDOUT)
|
||||
ffmpeg_pipe = subprocess.Popen(command[0], stdin=ffmpeg_gen_pipe.stdout, 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=DEVNULL)
|
||||
pipe = subprocess.Popen(command[1], stdin=ffmpeg_pipe.stdout, stdout=PIPE,
|
||||
stderr=STDOUT,
|
||||
universal_newlines=True)
|
||||
|
|
2
setup.py
2
setup.py
|
@ -13,7 +13,7 @@ REQUIRES = [
|
|||
with open("README.md", "r") as f:
|
||||
long_description = f.read()
|
||||
|
||||
version = "5.4"
|
||||
version = "5.4-1"
|
||||
|
||||
setuptools.setup(
|
||||
name="Av1an",
|
||||
|
|
Loading…
Reference in a new issue