Skip to content

Instantly share code, notes, and snippets.

@FatsackFails
Last active May 11, 2021 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FatsackFails/b19de29f76ef08f8412249d5ebe7486c to your computer and use it in GitHub Desktop.
Save FatsackFails/b19de29f76ef08f8412249d5ebe7486c to your computer and use it in GitHub Desktop.
FFmpeg MOV to WEBM BAT
for %%i in (*.*) do ffmpeg -i "%%i" -f webm -c:v libvpx -b:v 2M -acodec libvorbis -auto-alt-ref 0 "%%~ni.webm"
@FatsackFails
Copy link
Author

Converts all MOV files in a folder to WEBM using FFmpeg, maintaining transparency if needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment