A tool to create a CD image (bin/cue) from a directory of WAV files.
You have a folder full of WAV files and you want to emulate them being a CD on your system.
This tool can create a .bin and .cue file which you can then pass into cdemu.
./cdmaker.py output.bin output.cue track1.wav track2.wav ...
The only requirement is a somewhat modern version of Python, no extra dependencies required.
This project is based on and inspired by pretenzo's Wav2Bin tool.
Compared to theirs however, mine is:
- OS-independent. If it can run Python, it can run this.
- Able to read WAVs that have metadata included.
- Extensible and easy to mess with compared to C++.