Created
September 26, 2021 18:08
-
-
Save Black-Platypus/e1b0c8526abaffc9f6ffc63d232b53d5 to your computer and use it in GitHub Desktop.
Windows Script: FFMPEG video compression/specific file size
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM Windows implementation of Marian Minar's answer to "ffmpeg video compression / specific file size" https://stackoverflow.com/a/61146975/2902367 | |
SET "video=%~1" | |
SET "target_video_size_MB=%~2" | |
SET "output_file=%~dpn1 %~2MB.mp4" | |
REM I usually don't see a big difference between two-pass and single-pass... set to anything but "true" to turn off two-pass encoding | |
SET "twopass=true" | |
REM We need a way to do floating point arithmetic in CMD, here is a quick one. Change the path to a location that's convenient for you | |
set "mathPath=c:\bin\Math.vbs" | |
REM Creating the Math VBS file | |
if not exist "%mathPath%" echo Wscript.echo replace(eval(WScript.Arguments(0)),",",".")>%mathPath% | |
echo Converting to %target_video_size_MB% MB: "%video%" | |
echo -^> "%output_file%" | |
pause | |
SETLOCAL EnableDelayedExpansion | |
REM Getting the (audio) duration. TODO: watch out for differing audio/video durations? | |
FOR /F "delims=" %%i IN ('ffprobe -v error -show_streams -select_streams a "%~1"') DO ( | |
SET "line=%%i" | |
if "!line:~0,9!" == "duration=" ( | |
SET "duration=!line:~9!" | |
) | |
) | |
REM Getting the audio bitrate | |
FOR /F "delims=" %%i IN ('ffprobe -v error -pretty -show_streams -select_streams a "%~1"') DO ( | |
SET "line=%%i" | |
SET /A "c=0" | |
if "!line:~0,9!" == "bit_rate=" ( | |
FOR %%a IN (!line:~9!) DO ( | |
if "!c!" == "0" ( | |
SET "audio_rate=%%a" | |
) | |
SET /A "c+=1" | |
) | |
) | |
) | |
REM TODO: Adjust target audio bitrate. Use source bitrate for now. | |
SET "target_audio_bitrate=%audio_rate%" | |
call:Math %target_video_size_MB% * 8192 / (1.048576 * %duration%) - %target_audio_bitrate% | |
SET "target_video_bitrate=%result%" | |
echo %target_audio_bitrate% audio, %target_video_bitrate% video | |
SET "passString=" | |
if "%twopass%" == "true" ( | |
echo Two-Pass Encoding | |
ffmpeg ^ | |
-y ^ | |
-i "%~1" ^ | |
-c:v libx264 ^ | |
-b:v %target_video_bitrate%k ^ | |
-pass 1 ^ | |
-an ^ | |
-f mp4 ^ | |
nul | |
SET "passString=-pass 2" | |
) else ( echo Single-Pass Encoding ) | |
ffmpeg ^ | |
-i "%~1" ^ | |
-c:v libx264 ^ | |
-b:v %target_video_bitrate%k ^ | |
%passString% ^ | |
-c:a aac ^ | |
-b:a %target_audio_bitrate%k ^ | |
"%output_file%" | |
pause | |
GOTO :EOF | |
:Math | |
REM echo Working : "%*" | |
for /f %%a in ('cscript /nologo %mathPath% "%*"') do set "Result=%%a" | |
GOTO :EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the script :D
I made few changes in the code above, just posting it here in case anyone needs the same changes
-y
argument in second ffmpeg command to auto overwrite the filehere is the like to my fork