Skip to content

Instantly share code, notes, and snippets.

@arthurpizza
Created March 29, 2016 03:10
Show Gist options
  • Save arthurpizza/688da9db524c93e0595d to your computer and use it in GitHub Desktop.
Save arthurpizza/688da9db524c93e0595d to your computer and use it in GitHub Desktop.
FFMPEG Film DVD Cheat Sheet

FFMPEG to DVD

This is the default for most movies.

Scope Movies

ffmpeg -y -i {Input} -vf scale=720:352,pad=720:480:0:64 \
-target film-dvd -vb 4M -aspect 1.7777 -ac 2 -ab 192k {Output}

Flat Movies

ffmpeg -y -i {Input} -vf scale=720:480 \
-target film-dvd -vb 4M -aspect 1.7777 -ac 2 -ab 192k {Output}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment