Re: MakeMKV Batch Converter
Posted: Sun Mar 14, 2021 9:02 am
This one still connects every time it's started though, right? I find that strange especially since calling up the URL in a browser does not work.
I think so. I think its by far the best batch gui for MakeMKV. I've been using it for years. Wish it was still maintained or atleast the dude would release the source so someone else could continue it. Its great.Chetwood wrote: Sun Mar 14, 2021 9:02 am This one still connects every time it's started though, right? I find that strange especially since calling up the URL in a browser does not work.
Isn't this the source? Or was it for an older version?: https://github.com/alexgritton/MakeMKVBatchConverterwatchy wrote: Tue Mar 16, 2021 1:12 pm Wish it was still maintained or atleast the dude would release the source so someone else could continue it. Its great.
Code: Select all
@echo off
for /f "tokens=*" %%A in ('dir /B /S *.iso') DO (
makemkvcon64.exe info %%A > title.txt
FOR /F "tokens=2 USEBACKQ" %%F IN (`findstr /C:"Title " title.txt`) DO (
REM echo %%F
makemkvcon64.exe mkv %%A %%F E:\Video
)
)
Code: Select all
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
for getlslist in `find . -name *.iso`
do
title=$(basename "$getlslist" .iso)
pathname=$(dirname "$getlslist")
echo ${title}
if [ ! -d "${pathname}/${title}" ]
then
echo Creating folder "$pathname/$title"
mkdir "${pathname}/${title}"
fi
if [ ! -f "${title}".txt ]
then
echo Creating file "$title".txt
makemkvcon info "$getlslist" > "$title".txt
fi
for gettitlenum in `grep "Title " "$title".txt | sed -En 's/Title //p' `
do
# For loop
echo $gettitlenum
echo makemkvcon mkv "$getlslist" "$gettitlenum" "${pathname}/${title}"
makemkvcon mkv "$getlslist" "$gettitlenum" "${pathname}/${title}"
done
done
IFS=$SAVEIFS
I too am looking for either of these bulk converters!gattoteam wrote: Sat Feb 04, 2023 11:36 am Hello!
Is there a way to download the most recent version of this software? The link doesn't work (just like the movies2mkv link: it doesn't work either. I'd like to try at least one of the two programs).
Can someone help me?
Thank you![]()
A wayback link to the last working version of one of these batch converters I'm aware of was posted here.rms347 wrote: Sat Mar 18, 2023 3:30 pm I too am looking for either of these bulk converters!
I rip all my DVD and Blurays into their native folder structure but now would like to convert all these (almost 2000 movies) to MKV.