Skip to content

Instantly share code, notes, and snippets.

@profitcore
Created January 29, 2017 10:55
Show Gist options
  • Save profitcore/f91857a8d19fa1eddfe4262efc861148 to your computer and use it in GitHub Desktop.
Save profitcore/f91857a8d19fa1eddfe4262efc861148 to your computer and use it in GitHub Desktop.
Конвертация видео с помощью ffmpeg для публикации на сайте
#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