::This file can be renamed and turned into a Windows "batch" script file. To do so, rename the ".txt" extentions to ".bat". ::You will also have to add the root folder for MKVToolNix below. Then open the file normally. ::Do not move ANY files from it's original directory before usage. ::Do not alter code below unless you know what you're doing. ::--------------------------------------------------------------------------------------------------------------- ::Please add the root folder directory below AFTER the "=" (do not include quotes) set rootfolder=C:\Program Files\MKVToolNix cls ::Ignore everything below, you only needed to set the rootfolder above. @echo off if exist "%rootfolder%\mkvpropedit.exe" ( goto :mainmenu ) else ( echo Could not located mkvpropedit.exe. Please be sure to define the root directory inside this file. echo. echo Root folder is currrently defined as: %rootfolder% pause GOTO exit ) :mainmenu cls echo /$$$$$$ /$$/$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$$ echo /$$__ $$ ^| $^|__/ ^| $$ /$$__ $$/$$__ $^| $$____/ echo ^| $$ \ $$/$$ /$$ /$$$$$$^| $$/$$/$$$$$$ /$$ /$$ /$$ /$^|__/ \ $^| $$ \__^| $$ echo ^| $$ ^| $^| $$ ^| $$^|____ $^| $^| $^|_ $$_/ ^| $$ ^| $$ ^| $$ /$$/ /$$$$$$^| $$$$$$$^| $$$$$$$ echo ^| $$ ^| $^| $$ ^| $$ /$$$$$$^| $^| $$ ^| $$ ^| $$ ^| $$ \ $$$$/ /$$____/^| $$__ $^|_____ $$ echo ^| $$/$$ $^| $$ ^| $$/$$__ $^| $^| $$ ^| $$ /$^| $$ ^| $$ ^>$$ $$^| $$ ^| $$ \ $$/$$ \ $$ echo ^| $$$$$$^| $$$$$$^| $$$$$$^| $^| $$ ^| $$$$^| $$$$$$$ /$$/\ $^| $$$$$$$^| $$$$$$^| $$$$$$/ echo \____ $$$\______/ \_______^|__^|__/ \___/ \____ $$ ^|__/ \__^|________/\______/ \______/ echo /$$$$$$$/ /$$ /$$ ^| $$ echo ^| $$__ $$ ^| $$ ^| $$$$$$/ echo ^| $$ \ $$ /$$$$$$^| $$ /$$$$$$ /$$$$$$ /$$$$$$$_/$$$$$$ /$$$$$$$ echo ^| $$$$$$$//$$__ $^| $$/$$__ $$^|____ $$/$$_____//$$__ $$/$$_____/ echo ^| $$__ $^| $$$$$$$^| $^| $$$$$$$$ /$$$$$$^| $$$$$$^| $$$$$$$^| $$$$$$ echo ^| $$ \ $^| $$_____^| $^| $$_____//$$__ $$\____ $^| $$_____/\____ $$ echo ^| $$ ^| $^| $$$$$$^| $^| $$$$$$^| $$$$$$$/$$$$$$$^| $$$$$$$/$$$$$$$/ echo ^|__/ ^|__/\_______^|__/\_______/\_______^|_______/ \_______^|_______/ echo ======================================================== echo ^| Welcome to ImE's FMA Brotherhood release editor! ^| echo ^| Follow the steps below to use this script. ^| echo ======================================================== echo. echo 1) Set Forced Audio to English echo 2) Set Forced Audio to Japanese echo 3) Set Forced English Subtitles (Japanese Text) echo 4) Set Forced English Subtitles (Japanese Text and Spoken Words) echo 5) Exit echo. SET /P M=Type 1, 2, 3, 4 or 5 then press ENTER: IF %M%==1 GOTO AUDENG IF %M%==2 GOTO AUDJPN IF %M%==3 GOTO SUBSPKN IF %M%==4 GOTO SUBTEXT IF %M%==5 GOTO EXIT :AUDENG cls for %%f in (..\..\*.mkv) do ( echo. echo Setting English Audio Forced for: echo %%~nf echo. "%rootfolder%\mkvpropedit.exe" "%%f" --edit track:a1 --set flag-forced=1 --set flag-default=1 --edit track:a2 --set flag-forced=0 --set flag-default=0 ) GOTO eof :AUDJPN cls for %%f in (..\..\*.mkv) do ( echo. echo Setting Japanese Audio Forced for: echo %%~nf "%rootfolder%\mkvpropedit.exe" "%%f" --edit track:a1 --set flag-forced=0 --set flag-default=0 --edit track:a2 --set flag-forced=1 --set flag-default=1 ) GOTO eof :SUBSPKN cls for %%f in (..\..\*.mkv) do ( echo. echo Setting English Subtitles Forced ^(Japanese Text and Spoken Words^) for: echo %%~nf "%rootfolder%\mkvpropedit.exe" "%%f" --edit track:s1 --set flag-forced=1 --set flag-default=1 --edit track:s2 --set flag-forced=0 --set flag-default=0 ) GOTO eof :SUBTEXT cls for %%f in (..\..\*.mkv) do ( echo. echo Setting English Subtitles Forced ^(Japanese Text and Spoken Words^) for: echo %%~nf "%rootfolder%\mkvpropedit.exe" "%%f" --edit track:s1 --set flag-forced=0 --set flag-default=0 --edit track:s2 --set flag-forced=1 --set flag-default=1 ) GOTO eof :eof echo. echo Press any key to return to Main Menu. pause >nul GOTO mainmenu :exit exit