Last active
April 1, 2021 09:08
-
-
Save olivermontalvanm/a15df68472978f0ddda94c0223725dff to your computer and use it in GitHub Desktop.
Optimizar vídeo para la web usando FFMPEG
This file contains 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 {video_input} -vcodec libx265 -crf 28 {video_output} | |
ffmpeg -i input.avi -c:v libx264 -crf 18 -preset veryslow -c:a copy out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment