Simple Streamio FFmpeg wrapper for CarrierWave uploader
Add this line to your application's Gemfile:
gem 'carrierwave-ffmpeg'
And then execute:
$ bundle
Or install it yourself as:
$ gem install carrierwave-ffmpeg
Include wrapper into your CarrierWave uploader class
class VideoUploader < CarrierWave::Uploader::Base
include CarrierWave::FFmpeg
end
Example of CarrierWave FFmpeg Uploader processing on background (carrierwave_backgrounder), converting to mp4, webm and ogv with multiple resolutions (Original, 1080p, 720p)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request