Brasero ISO Images

Refer: http://manpages.ubuntu.com/manpages/bionic/man1/bchunk.1.html
Refer: https://unix.stackexchange.com/questions/29671/how-can-i-convert-a-cue-bin-with-cdr-tracks-image-into-a-single-iso-file/29675

Save file as CUE file, and after the *.bin and *.cue files are created

bchunk [-v] [-p] [-r] [-w] [-s] <image.bin> <image.cue> <basename>

$ bchunk QUEEN.bin QUEEN.cue QUEEN.iso

If the BIN file contains CD-Audio tracks you cannot convert it to an ISO image! The reason for this is that, unlike e.g. a CD-ROM, the data structure of an audio CD is fundamentally incompatible with an ISO 9660 file system. See the link below for a paper that gives a good explanation of this:

http://journal.code4lib.org/articles/9581

However, you could use bchunk (as suggested above) with the -w option, which generates output in WAV format. Command line would be something like this:

bchunk -s -w IMAGE.bin IMAGE.cue IMAGE

This will create WAV files for each audio track, e.g.:

IMAGE001.wav
IMAGE002.wav

$ bchunk -s -w QUEEN.bin QUEEN.cue QUEEN

Leave a Reply