modified init system and moved vmaf module

This commit is contained in:
Zen 2021-05-21 12:07:49 +03:00
parent 526579cf09
commit 424cc4fcdd
4 changed files with 0 additions and 22 deletions

View file

@ -1,5 +1,3 @@
#!/usr/bin/env python3
from av1an.__main__ import main
from .vmaf import VMAF
from av1an import *
from av1an_pyo3 import *

View file

@ -1,19 +0,0 @@
#!/usr/bin/env python3
from .arg_parse import Args
from .manager import Manager
from .startup.setup import startup_check
def main():
"""
Running Av1an CLI
"""
parser = Args()
project = parser.get_project()
startup_check(project)
manager = Manager.Main(project)
manager.run()
if __name__ == "__main__":
main()

View file

@ -1 +0,0 @@
from .vmaf import VMAF