carrierwave-video-thumbnailer
carrierwave-video-thumbnailer copied to clipboard
Use ImageMagick processes
Is it possible to use ImageMagick processes like resize_to_limit or resize_to_fill from a created thumbnail? For example, I tried:
version :square_thumb do process thumbnail: [{format: 'png', quality: 10, size: 105, strip: false, logger: Rails.logger}] def full_filename for_file png_name for_file, version_name end process resize_to_fill: [105, 105] end
But I get the error "Wrong number of arguments (1 for 0)"
I'd love this too, but it looks like ffmpegthumbnailer
doesn't really have options to be able to do this sort of thing.