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.

25 lines
804 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. unless options[:style] == :original && num_frames > 1
  9. tmp_file = Paperclip::TempfileFactory.new.generate(attachment.instance.file_file_name)
  10. tmp_file << file.read
  11. return tmp_file
  12. end
  13. final_file = Paperclip::Transcoder.make(file, options, attachment)
  14. attachment.instance.file_file_name = 'media.mp4'
  15. attachment.instance.file_content_type = 'video/mp4'
  16. attachment.instance.type = MediaAttachment.types[:gifv]
  17. final_file
  18. end
  19. end
  20. end