makemkvcon not processing the correct title ID
Posted: Wed Dec 07, 2022 9:48 pm
I'm trying out makemkvcon to batch process some episodes to minimize on my Copy/Paste using the GUI.
However, when I try to process title 5 using the syntax below, it processes title ID 34. I tried again choosing title ID 26, and again it processed title ID 34.
Example:
Anyone else getting similar results or seen this before?
I'm running latest MakeMKV 1.17.2 for Windows.
On another note, I tried creating a log file using the limited syntax from here: http://www.makemkv.com/developers/usage.txt, but I'm just getting an empty file and the processing doesn't even run which explains why the file is empty.
Tried the following to get a useable log file:
Added -stdout
Tried prefixing f which is supposed to be for arguments...?
Reordered the argument after the mkv command
All four methods produced the same results, so I'm not sure how I'm supposed to get a log file to upload.
However, when I try to process title 5 using the syntax below, it processes title ID 34. I tried again choosing title ID 26, and again it processed title ID 34.
Code: Select all
makemkv64.exe mkv <source> <title id> <destination folder>
Code: Select all
makemkv64.exe mkv "D:\DVD\ShowTitle" 5 "D:\Shows\ShowTitle"
I'm running latest MakeMKV 1.17.2 for Windows.
On another note, I tried creating a log file using the limited syntax from here: http://www.makemkv.com/developers/usage.txt, but I'm just getting an empty file and the processing doesn't even run which explains why the file is empty.
Tried the following to get a useable log file:
Code: Select all
makemkv64.exe mkv "D:\DVD\ShowTitle" 5 "D:\Shows\ShowTitle" --messages="D:\Logs\mmkv_log.txt"
Code: Select all
makemkv64.exe mkv "D:\DVD\ShowTitle" 5 "D:\Shows\ShowTitle" --messages="D:\Logs\mmkv_log.txt" -stdout
Code: Select all
makemkv64.exe mkv "D:\DVD\ShowTitle" 5 "D:\Shows\ShowTitle" f --messages="D:\Logs\mmkv_log.txt" -stdout
Code: Select all
makemkv64.exe mkv f --messages="D:\Logs\mmkv_log.txt" -stdout "D:\DVD\ShowTitle" 5 "D:\Shows\ShowTitle"