Skip to content

Instantly share code, notes, and snippets.

@aqzlpm11
Created March 2, 2019 07:14
Show Gist options
  • Save aqzlpm11/d84184e0c27cbf3812c2d3d1243e0fee to your computer and use it in GitHub Desktop.
Save aqzlpm11/d84184e0c27cbf3812c2d3d1243e0fee to your computer and use it in GitHub Desktop.
ffmpge 压缩视频 微信
ffmpeg -i \#Architecture.mov -ss 00:00:01 -vcodec libx264 -preset fast -crf 23 -vf "scale=640:-1" -acodec libmp3lame -ab 128k architecure.mp4
# -ss 00:00:01 cut begin at 00:00:01
# -crf 23 压缩程度(数字越大,体积越小)
# -vf "scale=640:-1" 缩放
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment