Last active
October 4, 2017 01:59
-
-
Save simonhaenisch/8ae1aa602ed3d840a4feb4f7bb5e061a to your computer and use it in GitHub Desktop.
Convert videos to H.264 for web
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
#! /bin/bash | |
# https://trac.ffmpeg.org/wiki/Encode/H.264 | |
# https://app.zencoder.com/docs/guides/encoding-settings/h264-advanced | |
# get input and output filenames from cl args | |
i="$1" | |
o="$2" | |
# run ffmpeg | |
ffmpeg -i "$i" -c:v libx264 -preset slow -crf 22 -c:a copy -profile:v baseline -level 3.0 -pix_fmt yuv420p -movflags +faststart "$o" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment