Paperclip allows you to specify multiple styles. Generally, this is used to specify multiple sizes for uploaded images; Paperclip processes the image once for each style and places them in the filesystem accordingly. By specifying different video formats for your styles and subclassing Paperclip::Processor, you can create your own video formats. In your model, you'd do something like this:
has_attached_file :video, :styles => { :mpeg, :ogg, :wmv }, :processors => [:my_custom_processor]
And then create a custom Processor that runs the correct FFmpeg command based on each style. See the documentation for more info, but here is a snippet:
Paperclip processors allow you to
modify attached files when they are
attached in any way you are able.
Paperclip itself uses command-line
programs for its included Thumbnail
processor, but custom processors are
not required to follow suit.
Processors are required to be defined
inside the Paperclip module and are
also required to be a subclass of
Paperclip::Processor. There is only
one method you must implement to
properly be a subclass: #make, but #initialize
may also be of use. Both methods accept 3 arguments: the file
that will be operated on (which is an
instance of File), a hash of options
that were defined in
has_attached_file’s style hash, and
the Paperclip::Attachment itself.
All #make needs to return is an
instance of File (Tempfile is
acceptable) which contains the results
of the processing.
See Paperclip.run for more
information about using command-line
utilities from within Processors.
When you create a link to a Paperclip attachment, you pass the style to determine which to link to:
<%= link_to "mpeg video", @model.video.url(:mpeg) %>
<%= link_to "ogg video", @model.video.url(:ogg) %>