agressiv wrote: ↑Wed Dec 02, 2020 5:42 pm
If you want a single MKV for each extended movie with a
flawless scene transition between discs, follow this guide. Be prepared to have a
lot of scratch disk for this, preferably on NVMe SSD
- Rip each extended disk to its own MKV, for example, LOTR1a.mkv and LOTR1b.mkv
- Drag Disc 1 into MkvToolnix by itself
- Go into the Output tab.
- Change Split mode from Do not split to After frame/field numbers
- Type in the large value in the list below for the "a" MKV and the smaller value for the "b" MKV
- The destination file can be LOTR1a-clipped.mkv as an example.
- When you click Start multiplexing, it will create two files - LOTR1a-clipped-001.mkv and LOTR1a-clipped-002.mkv
- Repeat for Disc 2.
- You'll see that for the first disc, -002 will be just a couple of seconds of black, while for the second disc, -001 will be just a couple of seconds of black.
- Create a new Multiplexer, and drag LOTR1a-clipped-001.mkv to the list. Right click that video, and do Append files and click LOTR1b-clipped-002.mkv.
- Make sure you don't touch the output section on this merge.
- Click Start multiplexing and verify the output. Dolby Vision should be preserved as well.
Here are the values to plug in under the
Output section for the US editions:
Fellowship of the Ring:
Disc 1 - 151967
Disc 2 - 46
Two Towers
Disc 1 - 153305
Disc 2 - 46
Return of the King
Disc 1 - 183540
Disc 2 - 46
If these don't line up for you, load each file into MPC-HC:
- Go to the last visible frame and pause it. Use CTRL and left or right arrow keys until you get the last frame.
- Hit CTRL-G. That will give you a popup of the current frame.
- For Disc 1, you want the last visible frame before it goes black.
- For Disc 2, you want the last black frame before it goes into a visible frame.
- Verify by using CTRL-G and putting in that number as well as the number after it. CTRL-Arrow seeking isn't perfect.
Thanks for this. For those who may be having trouble, I was able to use dd to piece together an ISO from different copies of a disc.
1. Scan 1st disc using makemkv to enable LibreDrive. (Ref:
viewtopic.php?p=79130#p79130)
2. Image first part (1st disc; fails, but outputs 59829888 blocks to iso file)
Code: Select all
dd if=/dev/sr0 of=LOTR_FOTW_p1.iso status=progress
3. Image Second part (2nd disc; fails, but outputs 64504296 blocks to second iso file)
Code: Select all
dd if=/dev/sr0 of=LOTR_FOTW_p2.iso skip=59829888 status=progress
4. Image Third part [if necessary; repeat as required] (1st disc; succeeds; skips blocks from first two parts)
Code: Select all
dd if=/dev/sr0 of=LOTR_FOTW_p3.iso skip=124334184 status=progress
5. Create a copy of the first part.
6. Append second part
Code: Select all
dd if=LOTR_FOTW_p2.iso OF=LOTR_FOTW.iso oflag=append conv=notrunc
7. Append third part
Code: Select all
dd if=LOTR_FOTW_p3.iso OF=LOTR_FOTW.iso oflag=append conv=notrunc
8. Open ISO in MakeMKV and create MKV as desired.
TIP: Keep copy of ISO in case you need to create another MKV in the future.