Search found 3 matches
- Thu Dec 07, 2023 5:08 pm
 - Forum: General MakeMKV discussion
 - Topic: MakeMKV rips opening tune as seperate title
 - Replies: 11
 - Views: 10477
 
Re: MakeMKV rips opening tune as seperate title
 Call it concatenating, appending, or stitching (what I do) with any program (as mentioned, I have done it before with Handbrake so I would use that), but I just wanted to check there isn’t some MakeMKV solution for this problem. Obviously, there isn’t. Another thing you could try if you really want...
					- Thu Dec 07, 2023 11:29 am
 - Forum: General MakeMKV discussion
 - Topic: MakeMKV rips opening tune as seperate title
 - Replies: 11
 - Views: 10477
 
Re: MakeMKV rips opening tune as seperate title
 The disc menu simply tells the player to 'play this file before that file', exactly the same as it would for a copyright warning, or a distributor's splash screen. And of course, VLC MP uses the disc menu code exactly the same as a regular household DVD player. Unfortunately, MakeMKV does not. To m...
					- Wed Dec 06, 2023 10:55 am
 - Forum: General MakeMKV discussion
 - Topic: MakeMKV rips opening tune as seperate title
 - Replies: 11
 - Views: 10477
 
Re: MakeMKV rips opening tune as seperate title
You could concatenate the title and episode with ffmpeg or mkvmerge . Some examples that appends episode1.mkv onto titles.mkv and outputs to titles_episode1.mkv: ffmpeg -i "concat:titles.mkv|episode1.mkv" -c copy -o titles_episode1.mkv or mkvmerge -o titles_episode1.mkv titles.mkv + episod...