Browse Source

Use more widely supported MP4 format for gifv's

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
03a857f59a
2 changed files with 9 additions and 7 deletions
  1. +7
    -5
      app/models/media_attachment.rb
  2. +2
    -2
      lib/paperclip/gif_transcoder.rb

+ 7
- 5
app/models/media_attachment.rb View File

@ -59,13 +59,15 @@ class MediaAttachment < ApplicationRecord
{
small: IMAGE_STYLES[:small],
original: {
format: 'webm',
format: 'mp4',
convert_options: {
output: {
'c:v' => 'libvpx',
'crf' => 4,
'b:v' => '1300K',
'vsync' => 'cfr',
'movflags' => 'faststart',
'pix_fmt' => 'yuv420p',
'vf' => 'scale=\'trunc(iw/2)*2:trunc(ih/2)*2\'',
'vsync' => 'cfr',
'b:v' => '1300K',
'crf' => 4,
},
},
},

+ 2
- 2
lib/paperclip/gif_transcoder.rb View File

@ -11,8 +11,8 @@ module Paperclip
final_file = Paperclip::Transcoder.make(file, options, attachment)
attachment.instance.file_file_name = 'media.webm'
attachment.instance.file_content_type = 'video/webm'
attachment.instance.file_file_name = 'media.mp4'
attachment.instance.file_content_type = 'video/mp4'
attachment.instance.type = MediaAttachment.types[:gifv]
final_file

Loading…
Cancel
Save