Browse Source

Add vsync -cfr option when converting gif to webm

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
6382ef2bc6
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      app/models/media_attachment.rb

+ 4
- 3
app/models/media_attachment.rb View File

@ -62,9 +62,10 @@ class MediaAttachment < ApplicationRecord
format: 'webm',
convert_options: {
output: {
'c:v' => 'libvpx',
'crf' => 4,
'b:v' => '500K',
'c:v' => 'libvpx',
'crf' => 4,
'b:v' => '500K',
'vsync' => 'cfr',
},
},
},

Loading…
Cancel
Save