Skip to content

Instantly share code, notes, and snippets.

@YuanLiou
Last active September 17, 2022 12:52
Show Gist options
  • Save YuanLiou/50e768271afb14f76814dbd243446a1a to your computer and use it in GitHub Desktop.
Save YuanLiou/50e768271afb14f76814dbd243446a1a to your computer and use it in GitHub Desktop.
FFMPEG optimize video file
# Optimize mp4
# Usage: optimizeVideo video_file
optimizeVideo() {
ffmpeg -i "${1}" -vcodec h264 -acodec mp2 "${1}".mp4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment