Skip to content

Instantly share code, notes, and snippets.

@simonhaenisch
Last active October 4, 2017 01:59
Show Gist options
  • Save simonhaenisch/8ae1aa602ed3d840a4feb4f7bb5e061a to your computer and use it in GitHub Desktop.
Save simonhaenisch/8ae1aa602ed3d840a4feb4f7bb5e061a to your computer and use it in GitHub Desktop.
Convert videos to H.264 for web
#! /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