about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorMIYAGI Hikaru <hcmiya@users.noreply.github.com>2018-04-10 16:11:55 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-04-10 09:11:55 +0200
commite6e93ecd8a45cea5f0c398054c2292a5fdf944cf (patch)
tree1af2bfa608264995c5b369b479d7a60fe7845dc4 /app
parent80a944c882ddbca4d546d03503f0ccff15703484 (diff)
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.
Diffstat (limited to 'app')
-rw-r--r--app/models/media_attachment.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb
index ac2aa7ed2..8fd9ac09f 100644
--- a/app/models/media_attachment.rb
+++ b/app/models/media_attachment.rb
@@ -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,
               },