@echo off
echo Encoding movie in 2D
echo Movie: Shrek 3D

echo Encoding started %date% %time%
@echo on

"C:\Users\olivia\Downloads\BD3D2MK3D\toolset\x264_x64.exe" --output-depth 8 ^
  --crf 23 --preset medium ^
  --qpfile chapters_2D_no_delay.qpfile --frames 129600 --fps 24000/1001 --sar 1:1 ^
  --output "01000_2D.264" "01000.track_4113.264"
@echo off
echo Encoding finished %date% %time%

REM Optionnaly mux the video and demuxed streams to MKV.
REM Note: The mux is disabled if no streams are demuxed.
if exist "_MUX_2D_REENCODED.cmd" cmd /c "_MUX_2D_REENCODED.cmd"

REM Everything done: do the post-processing (Shutdown computer...)
if exist "_POSTPROCESS_2D.cmd" cmd /c "_POSTPROCESS_2D.cmd"
exit /B


