Skip to content

Commit

Permalink
FFmpegProcessor: Fix codec specific options with CRF.
Browse files Browse the repository at this point in the history
  • Loading branch information
eseifert committed Sep 15, 2018
1 parent fd12bee commit ab90f5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions madam/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,19 +117,19 @@ class FFmpegProcessor(Processor):
],
'libvpx': [
'-speed', '1',
'-crf 10',
'-crf', '10',
'-pix_fmt', 'yuv420p',
],
'libvpx-vp9': [
'-speed', '1',
'-tile-columns', '6',
'-crf 32',
'-crf', '32',
'-pix_fmt', 'yuv420p',
],
'vp9': [
'-speed', '1',
'-tile-columns', '6',
'-crf 32',
'-crf', '32',
'-pix_fmt', 'yuv420p',
],
}
Expand Down

0 comments on commit ab90f5a

Please sign in to comment.