@ECHO OFF
set /p satn=Chroma Saturation Ratio. Available Range 0.0-3.0?:
set /p vert=How many Lines Vertically DOWN - Negative for UP?:
set /p hori=How many Pixels Horizontally - Negative for Left?:
set /p dely=Audio Delay SS.Milliseconds - Negative for Early?:
ffmpeg.exe -i "%~1" -itsoffset "%dely%" -i "%~1" -map 0:v -map 1:a -vf "atadenoise, curves=psfile='%~n1.acv', eq=saturation=%satn%, chromashift=cbh="%hori%":cbv="%vert%":crh="%hori%":crv="%vert%", cas" -c:v libx264 -pix_fmt yuv420p -preset slow -crf 23 -c:a aac -b:a 128000 "%~dpn1.mp4"
@ECHO ON
