2020-06-29 11:56:55 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'mime/types/columnar'
|
|
|
|
|
|
|
|
module Paperclip
|
|
|
|
class ImageExtractor < Paperclip::Processor
|
|
|
|
def make
|
|
|
|
return @file unless options[:style] == :original
|
|
|
|
|
2020-06-30 21:58:02 +00:00
|
|
|
image = extract_image_from_file!
|
2020-06-29 11:56:55 +00:00
|
|
|
|
|
|
|
unless image.nil?
|
|
|
|
begin
|
|
|
|
attachment.instance.thumbnail = image if image.size.positive?
|
|
|
|
ensure
|
|
|
|
# Paperclip does not automatically delete the source file of
|
|
|
|
# a new attachment while working on copies of it, so we need
|
|
|
|
# to make sure it's cleaned up
|
|
|
|
|
|
|
|
begin
|
2020-06-30 21:58:02 +00:00
|
|
|
image.close(true)
|
2020-06-29 11:56:55 +00:00
|
|
|
rescue Errno::ENOENT
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@file
|
|
|
|
end
|
2020-06-30 21:58:02 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def extract_image_from_file!
|
|
|
|
dst = Tempfile.new([File.basename(@file.path, '.*'), '.png'])
|
|
|
|
dst.binmode
|
|
|
|
|
|
|
|
begin
|
2024-04-22 09:00:24 +00:00
|
|
|
command = Terrapin::CommandLine.new(Rails.configuration.x.ffmpeg_binary, '-i :source -loglevel :loglevel -y :destination', logger: Paperclip.logger)
|
2021-05-05 17:44:01 +00:00
|
|
|
command.run(source: @file.path, destination: dst.path, loglevel: 'fatal')
|
|
|
|
rescue Terrapin::ExitStatusError
|
2020-06-30 21:58:02 +00:00
|
|
|
dst.close(true)
|
|
|
|
return nil
|
2021-05-05 17:44:01 +00:00
|
|
|
rescue Terrapin::CommandNotFoundError
|
|
|
|
raise Paperclip::Errors::CommandNotFoundError, 'Could not run the `ffmpeg` command. Please install ffmpeg.'
|
2020-06-30 21:58:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
dst
|
|
|
|
end
|
2020-06-29 11:56:55 +00:00
|
|
|
end
|
|
|
|
end
|