Created
March 2, 2019 07:14
-
-
Save aqzlpm11/d84184e0c27cbf3812c2d3d1243e0fee to your computer and use it in GitHub Desktop.
ffmpge 压缩视频 微信
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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