### Single File - default compressor - change the CRF value to tweak with size(and quality) ffmpeg -i input.mp4 -vcodec libx265 -crf 28 output.mp4 ### Batch Compression 1. Create a new folder for all your videos 2. Inside, create another folder called: compressed 3. Run script via your CLI 4. optional - change the CRF value to tweak with size(and quality) for %a in ("*.*") do (ffmpeg -i "%a" -vcodec libx265 -crf 28 "compressed\%~na.mp4") pause