The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
659 B

  1. # frozen_string_literal: true
  2. module Paperclip
  3. # This transcoder is only to be used for the MediaAttachment model
  4. # to convert animated gifs to webm
  5. class GifTranscoder < Paperclip::Processor
  6. def make
  7. num_frames = identify('-format %n :file', file: file.path).to_i
  8. return file unless options[:style] == :original && num_frames > 1
  9. final_file = Paperclip::Transcoder.make(file, options, attachment)
  10. attachment.instance.file_file_name = 'media.webm'
  11. attachment.instance.file_content_type = 'video/webm'
  12. attachment.instance.type = MediaAttachment.types[:gifv]
  13. final_file
  14. end
  15. end
  16. end