我想要设置视频上传,以便用户可以查看和播放它们。我是铁杆新手,任何人都知道如何做到这一点?
答案 0 :(得分:3)
您可以查看Paperclip
在包含视频的模型中,您需要正确的格式(ffmpeg
)并对视频进行验证:
has_attached_file :attachment,
styles: lambda { |a| a.instance.is_image? ? {:small => "x200>", :medium => "x300>", :large => "x400>"} : {:thumb => { :geometry => "100x100#", :format => 'jpg', :time => 10}, :medium => { :geometry => "300x300#", :format => 'jpg', :time => 10}}},
:processors => lambda { |a| a.is_video? ? [ :ffmpeg ] : [ :thumbnail ] }
validates_attachment_content_type :video, content_type: /\Avideo\/.*\Z/
评论更新:
has_attached_file :video, styles: {
:medium => {
:geometry => "640x480",
:format => 'mp4'
},
:thumb => { :geometry => "160x120", :format => 'jpeg', :time => 10}
}, :processors => [:transcoder]
答案 1 :(得分:1)
有一些实时代码可以实现此目标here:
#Gemfile
gem "paperclip-ffmpeg", "~> 1.2.0"
#app/models/attachment.rb
class Attachment < ActiveRecord::Base
has_attached_file :attachment,
styles: {:thumb => { geometry: "100x100#", format: 'jpg', time: 10}, medium: { gemometry: "300x300#", format: 'jpg', time: 10}},
processors: [ :ffmpeg ]
end
您遇到的主要问题是调用preprocessing。
使用Paperclip上传任何附件时,必须在存储之前对其进行处理。处理转换为正确的格式并调整大小(您也可以使用它做其他很酷的事情)。
视频处理与图像处理略有不同,因为您首先必须处理视频,以便服务器可以播放它,然后您还必须从中提取一些屏幕截图。
因此,您需要一个自定义处理器,@ Czanfar在其答案中发布的要么是ffmpeg
或transcoder
之间的选择
我也在这里写了一个答案: Rails video uploading
顺便说一下,当我去看那些制作Paperclip的人时:
答案 2 :(得分:1)
感谢Cyzanfars回答我得到了它的工作!
确保安装ffmpeg
brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-frei0r --with-libass --with-libvo-aacenc --with-libvorbis --with-libvpx --with-opencore-amr --with-openjpeg --with-opus --with-rtmpdump --with-schroedinger --with-speex --with-theora --with-tools