Me again, on a roll this week with trying to finally convert everything......
Ok, i now have over 500 ISO files of DVD main movie stored, and im looking to batch convert them to MKV. Searched the site and have found some stuff about batch processing but nothing that helps
so onto my question!
Right, i have set the default MKV profile to be audiocopy, default video size and a bitrate of 3500. (or a file size of 3900 if possible as thats the max file size i want, so any bitrate to that is brilliant!)
However when i use the batch file, it doesnt seem to pick that one up.
This is the batch file im using....(found on this site to give credit where its due)
rem Batch file to convert ISO files to mobile format.
rem For subtitles set "Direct render to video" on the Conversion Settings form. Batch file setup to render forced subtitles
rem In DVDFab Common Settings >> General settings, disable “Create files in subfolders of output directory”
rem Set following values for your specific conversion
set DVDSOURCE=M:\DVD ISO\ISO
set DESTDIR=f:\MKV
rem Usually blank. For some format types DVDFab appends a subdir to the DESTDIR. For mp4 format DVDFaB creates a VIDEO subfolder in the DESTDIR like J:\MOVIE\mp4\VIDEO
set DESTSUBDIR=
rem remove rem from one of following 2 lines
set DVDFAB="C:\Program Files (x86)\DVDFab 7\DVDFab.exe"
rem set DVDFAB="C:\Program Files\DVDFab 6\DVDFab.exe"
set SRCTYPE=iso
set DESTTYPE=mkv
set MODE="dvdmkv"
set PROFILE="mkv.default"
set LANGUAGE="English"
rem Following must be one line. No carriage returns.
for /r "%DVDSOURCE%" %%X in ("*.%SRCTYPE%") do (if not exist "%DESTDIR%\%DESTSUBDIR%\%%~nX.%DESTTYPE%" (%DVDFAB% /TITLE /MODE %MODE% /SRC "%%X" /DEST "%DESTDIR%" /PROFILE %PROFILE% /SUBTITLE %LANGUAGE% /DISPLAYFORCEDSUB "YES" /CLOSE) else (echo "Exists %DESTFILES%\%DESTSUBDIR%\%%~nX.%DESTTYPE%"))
Is there anyway to point it to a specific tweaked profile? Or is it limited to the standard default MKV one, even though i have changed it?
Ta!!!
Ok, i now have over 500 ISO files of DVD main movie stored, and im looking to batch convert them to MKV. Searched the site and have found some stuff about batch processing but nothing that helps
so onto my question!
Right, i have set the default MKV profile to be audiocopy, default video size and a bitrate of 3500. (or a file size of 3900 if possible as thats the max file size i want, so any bitrate to that is brilliant!)
However when i use the batch file, it doesnt seem to pick that one up.
This is the batch file im using....(found on this site to give credit where its due)
rem Batch file to convert ISO files to mobile format.
rem For subtitles set "Direct render to video" on the Conversion Settings form. Batch file setup to render forced subtitles
rem In DVDFab Common Settings >> General settings, disable “Create files in subfolders of output directory”
rem Set following values for your specific conversion
set DVDSOURCE=M:\DVD ISO\ISO
set DESTDIR=f:\MKV
rem Usually blank. For some format types DVDFab appends a subdir to the DESTDIR. For mp4 format DVDFaB creates a VIDEO subfolder in the DESTDIR like J:\MOVIE\mp4\VIDEO
set DESTSUBDIR=
rem remove rem from one of following 2 lines
set DVDFAB="C:\Program Files (x86)\DVDFab 7\DVDFab.exe"
rem set DVDFAB="C:\Program Files\DVDFab 6\DVDFab.exe"
set SRCTYPE=iso
set DESTTYPE=mkv
set MODE="dvdmkv"
set PROFILE="mkv.default"
set LANGUAGE="English"
rem Following must be one line. No carriage returns.
for /r "%DVDSOURCE%" %%X in ("*.%SRCTYPE%") do (if not exist "%DESTDIR%\%DESTSUBDIR%\%%~nX.%DESTTYPE%" (%DVDFAB% /TITLE /MODE %MODE% /SRC "%%X" /DEST "%DESTDIR%" /PROFILE %PROFILE% /SUBTITLE %LANGUAGE% /DISPLAYFORCEDSUB "YES" /CLOSE) else (echo "Exists %DESTFILES%\%DESTSUBDIR%\%%~nX.%DESTTYPE%"))
Is there anyway to point it to a specific tweaked profile? Or is it limited to the standard default MKV one, even though i have changed it?
Ta!!!
Comment