├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── flac.py ├── is_mqa.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsudo/mqaid/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsudo/mqaid/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsudo/mqaid/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsudo/mqaid/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsudo/mqaid/HEAD/README.md -------------------------------------------------------------------------------- /flac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsudo/mqaid/HEAD/flac.py -------------------------------------------------------------------------------- /is_mqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redsudo/mqaid/HEAD/is_mqa.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bitstring==3.1.6 2 | --------------------------------------------------------------------------------