Skip to content
Snippets Groups Projects
Commit e6e93ecd authored by MIYAGI Hikaru's avatar MIYAGI Hikaru Committed by Eugen Rochko
Browse files

Fix GIFV encoding params (#7098)

- Explicitly specify video codec.
  When ffmpeg isn't compiled with libx264 but openh264, mpeg4 is selected as video codec.
- Swap avarage bitrate and max bitrate.
parent 80a944c8
No related branches found
No related tags found
No related merge requests found
......@@ -130,8 +130,9 @@ class MediaAttachment < ApplicationRecord
'pix_fmt' => 'yuv420p',
'vf' => 'scale=\'trunc(iw/2)*2:trunc(ih/2)*2\'',
'vsync' => 'cfr',
'b:v' => '1300K',
'maxrate' => '500K',
'c:v' => 'h264',
'b:v' => '500K',
'maxrate' => '1300K',
'bufsize' => '1300K',
'crf' => 18,
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment