├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.ico ├── appveyor.yml ├── qenc.py ├── qencoder ├── av1anworkarounds.py ├── mainwindow.py ├── mainwindow.ui └── window.py ├── requirements.txt ├── screenshots ├── complex.png ├── cores.png ├── queue.png ├── simple.png └── vmaf.png ├── setup.py └── window.pyproject /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/README.md -------------------------------------------------------------------------------- /app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/app.ico -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/appveyor.yml -------------------------------------------------------------------------------- /qenc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/qenc.py -------------------------------------------------------------------------------- /qencoder/av1anworkarounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/qencoder/av1anworkarounds.py -------------------------------------------------------------------------------- /qencoder/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/qencoder/mainwindow.py -------------------------------------------------------------------------------- /qencoder/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/qencoder/mainwindow.ui -------------------------------------------------------------------------------- /qencoder/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/qencoder/window.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/screenshots/complex.png -------------------------------------------------------------------------------- /screenshots/cores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/screenshots/cores.png -------------------------------------------------------------------------------- /screenshots/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/screenshots/queue.png -------------------------------------------------------------------------------- /screenshots/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/screenshots/simple.png -------------------------------------------------------------------------------- /screenshots/vmaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/screenshots/vmaf.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/setup.py -------------------------------------------------------------------------------- /window.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natis1/qencoder/HEAD/window.pyproject --------------------------------------------------------------------------------