public
Description: Ruby wrapper for the QuickTime C API.
Homepage:
Clone URL: git://github.com/ryanb/rmov.git
rmov /
name age message
file .autotest Loading commit data...
file .gitignore Fri Oct 03 14:02:53 -0700 2008 adding movie.export_image as a generic way to e... [ryanb]
file CHANGELOG
file LICENSE Thu Oct 02 16:35:05 -0700 2008 releasing initial 0.1.0 with documentation [ryanb]
file Manifest
file README.rdoc
file Rakefile
file TODO Fri Oct 03 08:07:36 -0700 2008 adding track.volume getter and setter [ryanb]
directory ext/
directory lib/
directory spec/
directory tasks/
README.rdoc

RMov

Open, edit, and export QuickTime movies all within Ruby! This is an unofficial wrapper around Apple’s QuickTime C API. Mac OS X required.

Install

Install the gem:

  gem install rmov

And then load it in your project:

  require 'rmov'

Usage

Use this gem to open QuickTime movies and edit them to your liking.

  movie1 = QuickTime::Movie.open("path/to/movie.mov")
  movie2 = QuickTime::Movie.open("path/to/another_movie.mov")

  # add movie2 to the end of movie1
  movie1.append_movie(movie2)

  # make a new movie out of a section of movie 1
  # this will delete 5 seconds out of the movie at 2 seconds in
  movie3 = movie1.clip_section(2, 5)

  # You can insert that part back into the movie at 8 seconds in
  movie1.insert_movie(movie3, 8)

Now you can export the movie. Usually this is done through a user interface the first time around. The settings can then be saved to a file. After that you can load these settings without interfering the user with the dialog again.

  exporter = movie1.exporter

  # if we already have saved the settings, load those
  if File.exist? "settings.st"
    exporter.load_settings("settings.st")
  else
    # otherwise open the QuickTime GUI settings dialog
    exporter.open_settings_dialog

    # save settings to a file so we don't have to bother user next time
    exporter.save_settings("settings.st")
  end

  # export the movie to a file and report the progress along the way
  exporter.export("movie.mov") do |progress|
    percent = (progress*100).round
    puts "#{percent}% complete"
  end

See QuickTime::Movie in the RDoc for more information.

rmov.rubyforge.org

Development

This project can be found on github at the following URL.

github.com/ryanb/rmov

If you find a bug, please send me a message on GitHub.

If you would like to contribute to this project, please fork the repository and send me a pull request.