├── .gitignore ├── README.md ├── TODO.md ├── mix_machine.py ├── mix_machine.sh ├── mix_machine_utils.py └── mp3tomp3.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.mp3 2 | .DS_Store 3 | *.pyc 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbracken/mix-machine/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbracken/mix-machine/HEAD/TODO.md -------------------------------------------------------------------------------- /mix_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbracken/mix-machine/HEAD/mix_machine.py -------------------------------------------------------------------------------- /mix_machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbracken/mix-machine/HEAD/mix_machine.sh -------------------------------------------------------------------------------- /mix_machine_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbracken/mix-machine/HEAD/mix_machine_utils.py -------------------------------------------------------------------------------- /mp3tomp3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronbracken/mix-machine/HEAD/mp3tomp3.sh --------------------------------------------------------------------------------