trying to get my collection of media digitized, have around 1000 DVD's and few hundred blurays
my plan is to automate the process in python, but started in batch for the quick win.
My quick Win is below
My questions are:
1. how can i pull the DVD title into my command line variable?, i saw templates but not sure how to use them in this context.
2. is their a way to detect the largest file and rip that only? (i just want the films) / largest x files for Series
i know it wont work perfectly but found 99% of my films the largest file is the film.
my plan
once automated this i want to pull the full name from imdb. which i have a plan for.
this way the process is stream lined and if i want to add extra discs i could
many thanks!
Code: Select all
SET inputname=100
:top
#SET /P inputname= Please enter the DVD title
ECHO
if not exist "F:\Video\%inputname%" mkdir "F:\Video\%inputname%"
"C:\Program Files (x86)\MakeMKV\makemkvcon64.exe" mkv disc:0 all "F:/Video/%inputname%"
ECHO
ECHO
ECHO #########################################################
ECHO #########################################################
ECHO #########################################################
ECHO #########################################################
set /A inputname=%inputname%+1
set /P c=is the next disk ready[Y/N]?
ECHO #########################################################
ECHO #########################################################
ECHO #########################################################
if /I "%c%" EQU "Y" goto :top
if /I "%c%" EQU "y" goto :top