about summary refs log tree commit diff
path: root/lib/paperclip/video_transcoder.rb
blob: 0de5489646ba01505105540f9fdb9fd54fdf4846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module Paperclip
  # This transcoder is only to be used for the MediaAttachment model
  # to check when uploaded videos are actually gifv's
  class VideoTranscoder < Paperclip::Processor
    def make
      movie = FFMPEG::Movie.new(@file.path)
      actual_options = options
      passthrough_options = actual_options[:passthrough_options]
      actual_options = passthrough_options[:options] if passthrough?(movie, passthrough_options)

      attachment.instance.type = MediaAttachment.types[:gifv] unless movie.audio_codec

      Paperclip::Transcoder.make(file, actual_options, attachment)
    end

    private

    def passthrough?(movie, options)
      options && options[:video_codec_whitelist].include?(movie.video_codec) && options[:audio_codec_whitelist].include?(movie.audio_codec)
    end
  end
end