[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: 64
- 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: 64
- 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: 64
- 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