This guide explains what to do when the script halts due to MakeMKV removing cells from a title.
When you see this message:
⚠️ HALTED: Cells X-Y were removed from title start
MakeMKV has removed cells from the beginning of the title.
The partial MKV has been deleted.
MakeMKV's automatic title detection heuristic identified cells at the start of the title as navigation or menu data and stripped them. The resulting MKV would be missing content from the beginning. The script has deleted the partial file and halted to prevent an incomplete preservation master being created silently.
MakeMKV applies heuristics when analysing DVD title sets. On some discs — particularly non-standard or complex authoring — it incorrectly classifies content cells as menu cells and removes them. This is a MakeMKV limitation, not a disc or ISO problem.
The MakeMKV GUI provides an "Open DVD disc manually" option that bypasses the automatic heuristic and lets you specify the full chapter range explicitly. This is the most reliable fix.
-
Open MakeMKV application
-
Open the ISO
- File → Open Disk Image
- Select the
.isofile the script identified (path is shown in the halt message)
-
Note the title duration shown — it will be shorter than expected due to the removed cells
-
Open the title manually
- Right-click the affected title, or look in the View/Tools menu for Open DVD disc manually
- Enter the full chapter range, e.g.
1:1-19(VTS 1, all chapters) - MakeMKV will re-analyse the title and include all cells
-
Verify the duration is now correct in the title list
-
Set the output directory to the path shown in the halt message (the script created it already)
-
Click Make MKV — name the output file using the preservation master convention:
IDENTIFIER-PM01.mkv(e.g.CA0001234567-PM01.mkv) -
Return to the script and use Option 4 to create the access MP4 from your corrected MKV
If MakeMKV GUI also fails, ffmpeg can concatenate the VOB files directly from the mounted ISO, bypassing MakeMKV entirely. This is lossless and includes all cells.
-
Mount the ISO
hdiutil attach /path/to/CA0001234567.iso -readonly -nobrowse
-
Find the mount point — look for the volume with a
VIDEO_TSfolderls /Volumes/
-
List the title VOBs (exclude
_0.VOBwhich is menus)ls -lh /Volumes/DISC_NAME/VIDEO_TS/VTS_01_*.VOB -
Concatenate with ffmpeg
ffmpeg -i "concat:/Volumes/DISC_NAME/VIDEO_TS/VTS_01_1.VOB|VTS_01_2.VOB|VTS_01_3.VOB" \ -map 0 -c copy \ -f matroska /path/to/output/CA0001234567-PM01.mkvAdjust the VOB list to match what is on your disc.
-
Unmount the ISO
hdiutil detach /Volumes/DISC_NAME
-
Use Option 4 in the script to create the access MP4
Once you have a complete MKV in the output directory:
- Run the script and choose Option 4
- Enter the path to the output directory containing the MKV
- The script will detect field order, apply deinterlacing if needed, and create the access MP4
Add a note to your archival metadata for the item indicating:
- That MakeMKV automatic extraction removed cells
- Which method was used to resolve it (GUI manual mode or ffmpeg)
- The MakeMKV version at the time (
makemkvcon --version)