Skip to content

Instantly share code, notes, and snippets.

@willnode
Forked from lukehedger/ffmpeg-compress-mp4
Last active March 10, 2022 22:45
Show Gist options
  • Save willnode/430b4a0725996249431fe0cabdf280b1 to your computer and use it in GitHub Desktop.
Save willnode/430b4a0725996249431fe0cabdf280b1 to your computer and use it in GitHub Desktop.
Compress mp4 using FFMPEG (batch script for whole .mp4 in folder)
for %%v in (*.mp4) do ffmpeg -i "%%v" -vcodec h264 -b:v 800k -acodec mp3 "compress/%%v"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment