Hello there, I really appreciate MakeMKV because there is so much disinfo out there on being able to simply remux a disc instead of encode it. MakeMKV does it easily and beautifully.
However, I wish there was a way to generate a seperate MKV file for each title on a disc. That would be great for discs that collect multiple episodes, especially for Plex or other media library solutions.
I know that MakeMKV preserves the title information, so I can use another tool to break it up without encoding it, but it would be great to be able to do it all from a single application.
Is there a way to create a seperate mkv for each title in a disc?
-
- Posts: 1
- Joined: Sun Feb 23, 2025 11:19 pm
Re: Is there a way to create a seperate mkv for each title in a disc?
Most disks that I've backedup have separate MKV files for each episode/title. It is very rare that I get a disk that just has all the episodes in a single block; in those situations I then use MKVToolNix (doesn't transcode - still full quality, still mkv file) to break into separate titles by timestamp.
Seems you might have the badluck lottery or are going through a lot of DVDs for shows (more common on DVD) - bluray generally has separate MKV files per episode in my experience.
Seems you might have the badluck lottery or are going through a lot of DVDs for shows (more common on DVD) - bluray generally has separate MKV files per episode in my experience.
Re: Is there a way to create a seperate mkv for each title in a disc?
As flesh mentioned, you can sometimes get DVDs or BDs that have "one large file", with anywhere from 5 to 60 episodes in them. MakeMKV is just going to extract the file from the disk; what you do after that involves other tools. I use handbrake, with a script to tell it which chapters are which episode, but mkvtoolnix is MUCH faster, because it doesn't re-encode things.
Some disks have multiple ways of looking at the file(s). The episodes of Bleach on DVD, and most anything by Funimation on BD, usually have one 4- or 5-episode file, but also have each episode separate. On those, you have to just unselect the collected file. You'll notice it by the long run-time.
Some disks have multiple ways of looking at the file(s). The episodes of Bleach on DVD, and most anything by Funimation on BD, usually have one 4- or 5-episode file, but also have each episode separate. On those, you have to just unselect the collected file. You'll notice it by the long run-time.
MakeMKV Frequently Asked Questions
FAQ about BETA and PERMANENT keys.
How to aid in finding the answer to your problem: Activating Debug Logging
FAQ about BETA and PERMANENT keys.
How to aid in finding the answer to your problem: Activating Debug Logging
Re: Is there a way to create a seperate mkv for each title in a disc?
Without playlist obfuscation, this is dead simple:
Code: Select all
#!/bin/bash
makemkvcon backup --decrypt --cache=16 --noscan -r --progress=-same disc:0 ./temp_dir
makemkvcon mkv file:./temp_dir/BDMV all ./temp_dir
for i in ./temp_dir/*.mkv; do
echo do something with "$i";
done