Created
August 3, 2012 18:37
-
-
Save biswarupadhikari/3250304 to your computer and use it in GitHub Desktop.
How to Convert .BIN/.CUE Files to .ISO in Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install bchunk using the following command | |
sudo aptitude install bchunk | |
This will complete the installation. | |
Using bchunk | |
bchunk syntax | |
bchunk [-v] [-p] [-r] [-w] [-s] <image.bin> <image.cue> <basename> | |
Available options | |
-v -- Makes binchunker print some more unnecessary messages, which should not be of interest for anyone. | |
-w -- Makes binchunker write audio tracks in WAV format. | |
-s -- Makes binchunker swap byte order in the samples of audio tracks. | |
-p -- Makes binchunker go into PSX mode and truncate MODE2/2352 tracks to 2336 bytes at offset 0 instead of normal 2048 bytes at offset 24. | |
-r -- Makes binchunker output MODE2/2352 tracks in raw format, from offset 0 for 2352 bytes. Good for MPEG/VCD. | |
Bchunk Example | |
bchunk IMAGE.bin IMAGE.cue IMAGE.iso |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment