I am writing a python application so xbmc can use makemkv to rip titles. The problem I am having is I need to rip multiple titles on a disk. In the makemkv GUI I just check the boxes I want to rip and it works great. It will scan the disk once and pull all of the selected titles. When I use makemkvcon I can not figure out how to rip multiple titles. I can only do one title at a time or all of the titles. I am pretty sure that there is a way to do this I just have not figured it out yet. I have tried many variations below:
Code: Select all
makemkvcon -r mkv iso:ISO-FILE.iso 0, 2 /destination
The goal for the above command is to rip title 0 and title 2 form the iso.
I really do not want to use a 'for' loop to get each title because that will re-scan the entire disk each time. That is a lot of wasted time if you are going to rip 8 episodes from a tv series.
I am pretty sure that makemkvcon is capable of ripping multiple titles because I think the makemkv gui runs on top of makemkvcon.
If anyone can help me out that would be great.
Thanks.