[Feature Request] CLI - multiple selected titles
Re: [Feature Request] CLI - multiple selected titles
IIRC, this low-level functionality was requested/implemented so that users could write their own scripts, where the script itself was expected to parse the output & construct the desired (individual) command lines. If you are expecting higher-level functionality, I would bet you MAY be waiting a long time (although I do not presume to speak for Mike).
-
- Posts: 68
- Joined: Wed May 10, 2017 11:04 am
Re: [Feature Request] CLI - multiple selected titles
Thanks for your reply d00zah, much appreciated.d00zah wrote: ↑Fri Jul 12, 2019 10:15 pmIIRC, this low-level functionality was requested/implemented so that users could write their own scripts, where the script itself was expected to parse the output & construct the desired (individual) command lines. If you are expecting higher-level functionality, I would bet you MAY be waiting a long time (although I do not presume to speak for Mike).
This begs 2 questions...
- How does the GUI work "under the hood" when you tick boxes and select tracks 2,3 from the DVD disc?
- What does the command line software makemkvcon do exactly when you choose "all" as the parameter for which tracks to rip?
Hopefully, Mike will reply and give us the answer so I can stop nagging!
Have a nice weekend
Regards,
Paully
PS: thanks Mike for all your hard work on this software... it is the second best £50 I have ever spent! (the first was a tandem skydive out of a plane above New Zealand but that's another story!)
-
- Posts: 68
- Joined: Wed May 10, 2017 11:04 am
Re: [Feature Request] CLI - multiple selected titles
Hello fellow Linux users,
I wrote this...
..hope you find it useful.
Please tweak as required. Comments and suggestions welcome.
Regards,
Paully
I wrote this...
Code: Select all
#!/bin/bash
#
# cli wrapper for makemkv to rip selected titles
#
# change to home directory
cd;
# read disc to show titles
lsdvd -q;
# ask which titles
read -p "Which titles? " TITLES;
# show chosen titles
echo "$TITLES";
# load titles in to an array
titles_array=($TITLES);
# show array
echo "${titles_array[@]}"
# process each title
for title in "${titles_array[@]}";
do
# echo "makemkvcon mkv disc:0 $title ./"
makemkvcon mkv disc:0 $title ./
sleep 3s;
done;
# finish
exit;
Please tweak as required. Comments and suggestions welcome.
Regards,
Paully
-
- Posts: 68
- Joined: Wed May 10, 2017 11:04 am
Re: [Feature Request] CLI - multiple selected titles
Any news?
In the meantime...
Paully
In the meantime...
Code: Select all
for n in 1 2 3 4 5 6 7; do makemkvcon mkv disc:0 $n /tmp/; done;
Paully
Re: [Feature Request] CLI - multiple selected titles
This request has been floating around forever and may never be supported, but it should be noted that some discs take a long time to decrypt. They can take hours to copy, 1 title at a time. For now, the best thing to do is actually take all titles and figure it out later. On a Blu-ray, this could be prohibitive in terms of time and space. Alternatively, if the decryption result could be stored, then people could work around the issue using the methods proposed in this thread.
-
- Posts: 68
- Joined: Wed May 10, 2017 11:04 am
Re: [Feature Request] CLI - multiple selected titles
The simple questions remain…
Why can you select multiple titles in the GUI?
If you select 3 titles in the GUI why does the output say “Saving 3 titles to directory”?
If anyone here can give me a simple answer, I’ll close the post.
Why can you select multiple titles in the GUI?
If you select 3 titles in the GUI why does the output say “Saving 3 titles to directory”?
If anyone here can give me a simple answer, I’ll close the post.