Skip to content

polly/ffmpeg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FFMpeg

A DSL for building and executing ffmpeg commands.

Requirements

It requires that you already have ffmpeg installed, obviously :)

Install

gem install ffmpeg —source http://gemcutter.org

Usage

To build and execute a command you would use the FFMpeg::convert method and then call the FFMpeg::run method like this:

require “rubygems”
require “ffmpeg”
include FFMpeg

convert “file.ext”, :to => “new_file.ext” do
    seek “00:01:13”
    duration “00:10:01”
end.run

If you want the output file to have the same name as the input file it’s enough to just specify the new file extension like this:

require “rubygems”
require “ffmpeg”
include FFMpeg

convert “finding_that_nemo_dude.avi”, :to => :flv do
    …
end

This will produce an output file called finding_that_nemo_dude.flv

For more information checkout the documentation or my blog

Credit where credit’s due

Thank’s to jwthompson2 there’s now support for all of the standard video and audio options and most of the advanced video options from the ffmpeg documentation as well
as improved and refactored specs.

Thanks to jamesdaniels for fixing a nasty output path error while using the :to => extension option

About

A DSL for building and executing ffmpeg commands

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages