├── .gitignore ├── README.md ├── mqa-identifier-python.py ├── mqa_identifier_python ├── __init__.py ├── flac.py └── mqa_identifier.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/MQA-identifier-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/MQA-identifier-python/HEAD/README.md -------------------------------------------------------------------------------- /mqa-identifier-python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/MQA-identifier-python/HEAD/mqa-identifier-python.py -------------------------------------------------------------------------------- /mqa_identifier_python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mqa_identifier_python/flac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/MQA-identifier-python/HEAD/mqa_identifier_python/flac.py -------------------------------------------------------------------------------- /mqa_identifier_python/mqa_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/MQA-identifier-python/HEAD/mqa_identifier_python/mqa_identifier.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dniel97/MQA-identifier-python/HEAD/requirements.txt --------------------------------------------------------------------------------