Open bbozo opened 9 years ago
Sorry, doesn't work in 0.6.2 either, it just doesn't generate an error, in 0.6.2 it generates a 320x320 image, ditching the aspect ratio
Duplicate of #31 ?
PS, is there a workaround for this? An older version of the gem perhaps?
for now, workaround is to use convert_options: { output: "320x" }
parameter (or whatever avconv supports) instead of :geometry
The above doesn't work but I was able to get it to work for ffmpeg using the following:
has_attached_file :movie, :styles => {:mp4 => { :convert_options => { :output => { :vf => 'scale=640:-1' }}, :format => 'mp4' }}, :processors => [:transcoder]
This works well in 0.6.2, but in 0.6.4 it seems that for
the command generated by gem is
which generates an empty file.