Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joker1007/activejob-ffmpeg
ActiveJob job definition for ffmpeg
https://github.com/joker1007/activejob-ffmpeg
Last synced: 2 days ago
JSON representation
ActiveJob job definition for ffmpeg
- Host: GitHub
- URL: https://github.com/joker1007/activejob-ffmpeg
- Owner: joker1007
- License: mit
- Created: 2014-12-21T12:23:09.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-23T14:01:31.000Z (almost 10 years ago)
- Last Synced: 2024-10-29T02:38:52.288Z (10 days ago)
- Language: Ruby
- Homepage:
- Size: 809 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ActiveJob::Ffmpeg
[![Gem Version](https://badge.fury.io/rb/activejob-ffmpeg.svg)](http://badge.fury.io/rb/activejob-ffmpeg)
[![Build Status](https://travis-ci.org/joker1007/activejob-ffmpeg.svg?branch=master)](https://travis-ci.org/joker1007/activejob-ffmpeg)
[![Coverage Status](https://coveralls.io/repos/joker1007/activejob-ffmpeg/badge.png)](https://coveralls.io/r/joker1007/activejob-ffmpeg)ActiveJob job definition for ffmpeg.
## Installation
gem install:$ gem install activejob-ffmpeg
Add this line to your application's Gemfile:
gem 'activejob-ffmpeg', github: "joker1007/activejob-ffmpeg"
And then execute:
$ bundle
## Usage
```ruby
class EncodeJob < ActiveJob::Ffmpeg::BaseJob
def on_progress(progress, extra_data = {})
p progress
enddef on_complete(encoder, extra_data = {})
puts "complete"
end
endEncodeJob.perform_later(input_filename, output_filename, extra_data, :mp4)
```Implemented Encoder class is following:
- mp4
- WebM## Contributing
1. Fork it ( https://github.com/[my-github-username]/activejob-ffmpeg/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request