mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +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"
|
self.log(f"File: {source.stem}, {frames}\n"
|
||||||
f"New vmaf: {new_vmaf}\n"
|
f"New vmaf: {new_vmaf}\n"
|
||||||
f"Probes: {pr}"
|
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'
|
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:
|
except Exception as e:
|
||||||
|
|
8
setup.py
8
setup.py
|
@ -10,12 +10,12 @@ REQUIRES = [
|
||||||
'matplotlib',
|
'matplotlib',
|
||||||
]
|
]
|
||||||
|
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as f:
|
||||||
long_description = fh.read()
|
long_description = f.read()
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="Av1an", # Replace with your own username
|
name="Av1an",
|
||||||
version="1.8.0",
|
version="1.8.0-1",
|
||||||
author="Master_Of_Zen",
|
author="Master_Of_Zen",
|
||||||
author_email="master_of_zen@protonmail.com",
|
author_email="master_of_zen@protonmail.com",
|
||||||
description="All-in-one encode toolkit",
|
description="All-in-one encode toolkit",
|
||||||
|
|
Loading…
Reference in a new issue