We’ve all been there: a folder full of .bin/.cue fragments—disc images split into awkward pieces, the digital equivalent of jigsaw puzzle pieces that don’t tell you where they belong. Repacking multiple BIN files into a single ISO is part technical chore, part small miracle: it restores a clean, portable image you can mount, burn, or archive. Below is a compact, practical, and reflective walkthrough that balances concrete steps with why each move matters.
Why bother?
Before you begin
Tooling choices (concise)
Step-by-step: practical approach
Inspect the .cue(s)
Validate file integrity
Use a converter that respects the cue
Linux example with bchunk (BIN/CUE → ISO + WAV for audio tracks):
bchunk disc.bin disc.cue output
This splits audio tracks to WAV and converts data tracks to ISO where possible. If the disc is purely data, bchunk will give you an ISO directly.
Windows/GUI example with ImgBurn:
Alternative: mount, inspect, rebuild
mkisofs -o output.iso -J -R /path/to/tempfolder
This rebuilds a clean ISO from the visible files. It’s particularly useful when the original BIN contained nonstandard structures or copy protection.Reconcile multiple BINs into one stream
Test the result
When the pieces don’t match
Missing or multiple .cue files: You may need to create or edit a .cue manually. A basic CUE for concatenated bins looks like: FILE "part01.bin" BINARY TRACK 01 MODE1/2352 INDEX 01 00:00:00 FILE "part02.bin" BINARY TRACK 02 MODE1/2352 INDEX 01 00:00:00 —but beware: incorrect MODE or INDEX values will corrupt track timing. Use this only as a last resort and compare against known-good CUE examples. how to convert multiple bin files to one iso repack
Corrupt BINs: try recovery tools or re-rips. Short of that, you can sometimes extract salvageable files by mounting what’s readable and copying contents, then rebuilding an ISO.
Preserving authenticity vs. practicality
Quick checklist
Final thought Repacking BIN fragments into one ISO blends technical care with a bit of detective work: read the cue sheet like a map, choose the right tool for fidelity vs. convenience, and always verify the output. Do the job patiently, and you’ll turn scattered shards into something cohesive, usable, and future-proof—digital housekeeping with satisfying closure.
bchunk image.cue image.bin output
xorriso -as mkisofs -o combined.iso -J -r /path/to/staging
genisoimage -o combined.iso -J -r /path/to/staging
If you want, I can:
(Invoking related search suggestions now.)
Converting multiple .bin files into a single consolidated .iso for a repack requires a two-step process: merging the individual tracks into one master .bin file, and then converting that master file into the .iso format. Part 1: Merging Multiple BIN Files
Individual .bin files often represent separate data or audio tracks of a single disc, indexed by a .cue sheet. You must first combine these into a single "monolithic" image. CDMage (Recommended for GUI):
Download and run CDMage (Version 1.02.1 beta is standard for this task).
Go to File > Open and select the .cue file associated with your multiple .bin files. Once loaded, go to File > Save As.
Choose a destination and ensure the format is set to Mode 2/2352 if prompted. This will output a single, combined .bin file. Binmerge (Recommended for Command Line/Automation):
Download binmerge, a specialized tool for merging multi-track discs into one pair of .bin/.cue files.
Run the utility targeting the .cue file to generate a single consolidated image. Part 2: Converting the Combined BIN to ISO
Once you have a single .bin file, you can convert it to the standard .iso format used in repacks. Merge Multiple Bin Files for PS1 Games
To convert multiple BIN files into a single ISO repack, you typically need to first merge the track files into a single BIN and then convert that file into the ISO format. Phase 1: Merge Multiple BINs into One BIN Turning Many BINs into One ISO: A Practical,
Most multi-track games use a .cue (Cue Sheet) file to index the multiple BIN files.
Download CD Mage: The 1.02.1 beta version is the community standard for this task.
Open the Cue File: Run CD Mage and go to File > Open. Select the .cue file associated with your multiple BIN tracks.
Save as a Single File: Go to File > Save As. Choose a new folder or file name.
Confirm Settings: Ensure the format is set to Mode 2/2352 (standard for PSX/multimedia discs) and click Okay. This produces one .bin and one .cue file. Phase 2: Convert Single BIN to ISO
Once you have one combined BIN file, you can convert it to a standard ISO.
PowerISO: Go to Tools > Convert. Select your source BIN and set the output to ISO.
AnyToISO: A lightweight tool where you simply select the BIN file and hit Convert.
IsoBuster: Open the .cue file, right-click the root "CD" icon, and select Extract CD > Raw Data (.iso). Software Review: CD Mage 1.02.1 Beta
CD Mage is widely considered the "gold standard" for retro gaming file management, particularly for PlayStation 1 (PSX) titles. Merge Multiple Bin Files for PS1 Games
How to Convert Multiple BIN Files into a Single ISO Repack If you have a game or software disc image split into multiple tracks, you may want to merge them into a single
file for easier use with emulators, mounting software, or to create a "repack". Because multiple BIN files are usually indexed by a
(cuesheet) file, the most effective way to combine them is to use a utility that reads the cuesheet and exports a single merged image. Method 1: Using CD Mage (Recommended for Games)
CD Mage is a popular, lightweight tool specifically designed to handle multi-track disc images like those found in PlayStation (PS1) or PC-Engine games. Open the Cuesheet executable. Go to File > Open and select the file that accompanies your multiple Save as Merged Image : After the cuesheet loads, go to File > Save As Choose Format
: Select a destination folder. While CD Mage primarily saves back to a single Simplicity: a single ISO is easier to mount,
pair, this single file can then be easily converted to a standard Confirm Settings : Ensure the mode is set correctly (typically Mode 2/2352 for most games) and click to begin merging. Method 2: Using PowerISO or UltraISO
For a direct conversion to ISO format, professional tools like are highly effective. [FREE] How To Convert ECM & BIN Files To ISO using UltraISO
Bchunk interprets the CUE sheet and reassembles a correct ISO 9660 filesystem from the first data track, discarding audio tracks if only ISO data is needed.
Command:
bchunk -v -w disc.cue combined_output.iso
-v : verbose output-w : produce ISO (rather than raw BIN)If the data track is not the first track, use the track index:
bchunk -v -w -t 2 disc.cue combined_output.iso
When preserving audio alongside data is not required, extract only the ISO portion:
# Extract only track 1 (data) as ISO
dd if=track01.bin of=data_only.iso bs=2048 skip=0
Note: This fails if data is not in track01.bin; verify with CUE.
For a true repack including audio (non-ISO), output to BIN/CUE again:
bchunk disc.cue repacked.bin repacked.cue
CDBurnerXP is a free, lightweight tool that, despite its name, supports Windows 10 and 11. It has a hidden "Convert BIN to ISO" feature, but it specifically handles single BIN+CUE pairs. To merge multiple BINs, we need to trick the software into burning a virtual disc.
Reconstruct + convert (bchunk, ImgBurn)
Extract files → mkisofs/xorriso
Direct commercial tools (PowerISO, UltraISO)
Low-level tools (dd, cdrdao)
anytoiso -o output.iso input.cue
Automatically merges multiple BINs referenced in the CUE.
If you lost the CUE sheet but have multiple BINs and know the disc structure, you can rebuild it manually.
disc.cue.FILE "data-track.bin" BINARY
TRACK 01 MODE1/2048
INDEX 01 00:00:00
FILE "audio-track-02.bin" BINARY
TRACK 02 AUDIO
INDEX 01 00:00:00
FILE "audio-track-03.bin" BINARY
TRACK 03 AUDIO
INDEX 01 00:00:00
bchunk disc.cue merged.iso.Warning: Without the original pregap and index information (which a proper CUE contains), your game might have audio desyncs or fail copy protection checks.