You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is encoder_options in CarrierWave::Video:: FfmpegOptions which is hardcoded to { preserve_aspect_ratio: :width }. But I want to set video size by height nad so I should change this to { preserve_aspect_ratio: :height }.
I think there should be a way to pass encoder options as other options.
The text was updated successfully, but these errors were encountered:
The flexibility of this gem to manipulate ffmpeg options is very specific to whoever made this project. Example: maybe I don't want a default resolution of 640x360?
There is
encoder_options
inCarrierWave::Video:: FfmpegOptions
which is hardcoded to{ preserve_aspect_ratio: :width }
. But I want to set video size by height nad so I should change this to{ preserve_aspect_ratio: :height }
.I think there should be a way to pass encoder options as other options.
The text was updated successfully, but these errors were encountered: