mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-24 18:18:06 +00:00
Setup changes
This commit is contained in:
parent
f60921ace6
commit
6bae91abfb
2 changed files with 5 additions and 5 deletions
2
av1an.py
2
av1an.py
|
@ -709,7 +709,7 @@ class Av1an:
|
|||
self.log(f"File: {source.stem}, {frames}\n"
|
||||
f"New vmaf: {new_vmaf}\n"
|
||||
f"Probes: {pr}"
|
||||
f"Target CQ: {tg_cq[0]}, Dif: {round(difference, 2)}\n")
|
||||
f"Target CQ: {round(tg_cq[0])}, Dif: {round(difference, 2)}\n")
|
||||
return int(tg_cq[0]), f'Target: CQ {int(new_tg_cq[0])} Vmaf: {round(float(new_tg_cq[1]), 2)}\n'
|
||||
|
||||
except Exception as e:
|
||||
|
|
8
setup.py
8
setup.py
|
@ -10,12 +10,12 @@ REQUIRES = [
|
|||
'matplotlib',
|
||||
]
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
with open("README.md", "r") as f:
|
||||
long_description = f.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="Av1an", # Replace with your own username
|
||||
version="1.8.0",
|
||||
name="Av1an",
|
||||
version="1.8.0-1",
|
||||
author="Master_Of_Zen",
|
||||
author_email="master_of_zen@protonmail.com",
|
||||
description="All-in-one encode toolkit",
|
||||
|
|
Loading…
Reference in a new issue