Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 819 Bytes

File metadata and controls

24 lines (16 loc) · 819 Bytes

iiarchives / cdmaker

A tool to create a CD image (bin/cue) from a directory of WAV files.

Use case

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.

Usage

./cdmaker.py output.bin output.cue track1.wav track2.wav ...

The only requirement is a somewhat modern version of Python, no extra dependencies required.

Inspiration

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++.