ruby-av / paperclip-av-transcoder

Audio/Video Transcoder for Paperclip using FFMPEG/Avconv
MIT License
135 stars 83 forks source link

Delayed job or job queue #57

Closed 0000sir closed 6 years ago

0000sir commented 6 years ago

Hi, this is exactly what I'm looking for, convert huge video files to smaller ones.

But I found it transcode files on form submit, it's there any delayed job or job queue to do this? that will make the web page more quickly, thanks.

attenzione commented 6 years ago

You can use delayed_paperclip (https://github.com/jrgifford/delayed_paperclip/) or this can be implemented by skipping file processing on ActiveModel create and executing ActiveJob after model creation.

0000sir commented 6 years ago

Great! Thank you! Delayed Paperclip works perfectly!