Skip to content

Instantly share code, notes, and snippets.

@mtrl
Last active July 22, 2016 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mtrl/5719faabbe989a2d17be to your computer and use it in GitHub Desktop.
Save mtrl/5719faabbe989a2d17be to your computer and use it in GitHub Desktop.
Transcode video for Chromecast
VIDEO=[video]
ffmpeg -i $VIDEO -c:v libx264 -profile:v high -level 5 -crf 18 -maxrate 10M -bufsize 16M -pix_fmt yuv420p -vf "scale=iw*sar:ih, scale='if(gt(iw,ih),min(1920,iw),-1)':'if(gt(iw,ih),-1,min(1080,ih))'" -x264opts bframes=3:cabac=1 -movflags faststart -strict experimental -c:a aac -b:a 320k -y $VIDEO.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment