Created
January 29, 2017 10:55
-
-
Save profitcore/f91857a8d19fa1eddfe4262efc861148 to your computer and use it in GitHub Desktop.
Конвертация видео с помощью 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
#https://trac.ffmpeg.org/wiki/Encode/H.264 | |
ffmpeg -i input.mp4 \ | |
-strict experimental \ | |
-preset slow \ | |
-threads 2 \ | |
-c:v libx264 -crf 22 \ | |
-c:a aac -b:a 256k \ | |
-r 25 \ | |
output.mp4 | |
#https://trac.ffmpeg.org/wiki/Encode/VP8 | |
ffmpeg -i input.mp4 \ | |
-c:v libvpx -qmin 0 -qmax 25 -crf 5 -b:v 1M \ | |
-c:a libvorbis \ | |
-r 25 -threads 4 \ | |
output.webm | |
#С усилением звука | |
#----------------- | |
#https://trac.ffmpeg.org/wiki/Encode/H.264 | |
ffmpeg -i input.mp4 \ | |
-strict experimental \ | |
-preset slow \ | |
-threads 2 \ | |
-c:v libx264 -crf 22 \ | |
-c:a aac -b:a 256k -af "volume=2.0" \ | |
-r 25 \ | |
output.mp4 | |
#https://trac.ffmpeg.org/wiki/Encode/VP8 | |
ffmpeg -i input.mp4 \ | |
-c:v libvpx -qmin 0 -qmax 25 -crf 5 -b:v 1M \ | |
-c:a libvorbis -af "volume=2.0" \ | |
-r 25 -threads 4 \ | |
output.webm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment