Av1an/av1an.py
2020-09-15 20:36:23 +03:00

22 lines
409 B
Python
Executable file

#!/usr/bin/env python3
from Av1an import *
from Startup.setup import startup_check
class Av1an:
"""Av1an - Python framework for AV1, VP9, VP8 encoding"""
def __init__(self):
self.args = arg_parsing()
def main_thread(self):
"""Main."""
startup_check(self.args)
main_queue(self.args)
def main():
Av1an().main_thread()
if __name__ == '__main__':
main()