├── .gitignore ├── CHANGELOG ├── LICENSE ├── Makefile ├── README.md ├── config.mk ├── whatmp3.1 └── whatmp3.py /.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # ignored files 3 | # 4 | whatmp3 5 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RecursiveForest/whatmp3/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RecursiveForest/whatmp3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RecursiveForest/whatmp3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RecursiveForest/whatmp3/HEAD/README.md -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RecursiveForest/whatmp3/HEAD/config.mk -------------------------------------------------------------------------------- /whatmp3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RecursiveForest/whatmp3/HEAD/whatmp3.1 -------------------------------------------------------------------------------- /whatmp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RecursiveForest/whatmp3/HEAD/whatmp3.py --------------------------------------------------------------------------------