gpt4 book ai didi

ruby-on-rails - 上传视频时带有缩略图样式的 Paperclip-ffmpeg 错误

转载 作者:行者123 更新时间:2023-12-02 03:49:31 24 4
gpt4 key购买 nike

我正在使用 Paperclip 3.4 和 Paperclip-ffmpeg 0.9.4。这是我在 video.rb 中的代码:

has_attached_file :file,
:url => '/:class/:id/:style.:extension',
:styles => { :thumb => { :geometry => "100x100#", :format => 'jpg', :time => 10 } },
:processors => [:ffmpeg], :swallow_stderr => false

当我尝试上传视频时,错误是

Command 'ffmpeg -ss 10 -i :source -y -vf scale=100:-1,pad=100:100:0:12.5:black -vframes 1 -f image2 :dest' returned 1. Expected 0

如果我注释掉或删除样式行,视频就会正确上传。我尝试更改 gem 的版本,但无济于事。

关于为什么样式散列会导致问题的任何指示?

编辑将“#”替换为“>”似乎可以解决问题,但我不确定是什么原因。

最佳答案

在官方回形针 gem documentation (在“调整大小选项”部分下)您可以找到以下说明:

Default behavior is to resize the image and maintain aspect ratio (i.e. the :medium version of a 300×150 image will be 200×100). Some commonly used options are:

trailing #, thumbnail will be centrally cropped, ensuring the requested dimensions.
trailing >, thumbnail will only be modified if it is currently larger requested dimensions. (i.e. the :small thumb for a 120×80 original image will be unchanged)

正如它所指出的那样,您可以查看更多选项 here .

关于ruby-on-rails - 上传视频时带有缩略图样式的 Paperclip-ffmpeg 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14987314/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com