mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
27 lines
691 B
Ruby
27 lines
691 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActiveStorage
|
|
class Previewer::VideoPreviewer < Previewer
|
|
def self.accept?(blob)
|
|
blob.video?
|
|
end
|
|
|
|
def preview
|
|
download_blob_to_tempfile do |input|
|
|
draw_relevant_frame_from input do |output|
|
|
yield io: output, filename: "#{blob.filename.base}.png", content_type: "image/png"
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
def draw_relevant_frame_from(file, &block)
|
|
draw ffmpeg_path, "-i", file.path, "-y", "-vcodec", "png",
|
|
"-vf", "thumbnail", "-vframes", "1", "-f", "image2", "-", &block
|
|
end
|
|
|
|
def ffmpeg_path
|
|
ActiveStorage.paths[:ffmpeg] || "ffmpeg"
|
|
end
|
|
end
|
|
end
|