11/02/06 - Version 0.5.1 released. New in this release are, support for creating animated GIFs and a gem install.
09/28/06 - New developer added to the project. Peter Brown (aka flippyhead) will be working on fixing the borked test scripts.
08/08/06 - The initial release of rmovie is now available for download.
Only tested on Linux so far. If you get it working on another platform, let me know and I'll update this
gem install rmovie
#!/usr/bin/ruby
# simple script to open a movie and output frame ten as a jpeg image
require 'rmovie'
require 'RMagick'
mov = RMovie::Movie.new("input.mov")
frame = mov.frame(10)
frame_as_string = frame.to_string();
img = Magick::Image.new(frame.width, frame.height)
img.import_pixels(0, 0, frame.width, frame.height, "RGB", frame_as_string, Magick::CharPixel)
img.write('output.jpg');
A: The rmovie extension uses ffmpeg libraries for access to video info. Some movie types have limited support in ffmpeg. If the movie can't be read correctly by ffmpeg then it won't work with rmovie. Consult the ffmpeg documentation for more info on supported formats. If rmovie won't read a movie, try using the ffmpeg command line program to convert the movie to another type. If it fails, then ffmpeg (and thus rmovie) don't support your movie type. If ffmpeg converts it correctly then the problem is most likely in rmovie, in which case you can bug me about it.
I am available for hire if you need further development or customization as long as the resulting code is made open source.
A: Yes. I wrote the ffmpeg-php extension a few years ago. When I started learning Ruby (Thanks why!), I decided to take a stab at porting ffmpeg-php to Ruby. That stab resulted in rmovie. In the process of porting the code, I factored out much of the lower level stuff so that both projects can share the same core code. The core was released as a separate library called quadrupel. The websites look similar (exactly similar) because I have no design talent and I'm too lazy to come up with a new layout for the rmovie extension. I'm open to any help with a new look for this website.
If you need help using rmovie, sign up for the rmovie google group and post your questions there. If you want to report a bug, please use the RubyForge project page.
|
Subscribe to rmovie | |
| Browse Archives at groups.google.com | ||