Skip to content

Instantly share code, notes, and snippets.

@mayconvm
Forked from lukehedger/ffmpeg-compress-mp4
Last active June 4, 2025 15:30
Show Gist options
  • Select an option

  • Save mayconvm/489c412f0e7aee964e74c91800071088 to your computer and use it in GitHub Desktop.

Select an option

Save mayconvm/489c412f0e7aee964e74c91800071088 to your computer and use it in GitHub Desktop.
Compress mp4 using FFMPEG
#!/bin/bash
ffmpeg -i "$1" -crf 27 -preset veryfast -movflags +faststart -r 30 -vcodec libx264 -acodec aac "$2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment