mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-24 18:18:06 +00:00
22 lines
409 B
Python
Executable file
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()
|