Tiffany Tseng
Tiffany Tseng
Did this ever get resolved? I'm running into the same issue.
I have the same problem. My image files have a content-type of video/quicktime on amazon s3. I've added require 'carrierwave/processing/mime_types' include CarrierWave::MimeTypes and process :set_content_type but it did not fix...
were you able to resolve the issue?
I solved this issue by overriding the process set_content_type as follows: require 'carrierwave/processing/mime_types' class VideoPathUploader < CarrierWave::Uploader::Base include CarrierWave::Video include CarrierWave::Video::Thumbnailer include CarrierWave::MimeTypes version :thumb do process thumbnail: [{format: 'png',...
I am also running into the same error running the demo code from the ReadMe