-
-
Save leylaKapi/f25764dab0d54012b562e0ce5883b868 to your computer and use it in GitHub Desktop.
ruby-processing: video processing example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# this is a test of ruby-processing (https://github.com/jashkenas/ruby-processing) with the video library | |
# use "rp5 unpack library" at a command line to install the video library, among others | |
# tested with Ruby 1.9.2 | |
# video file: http://bit.ly/H5yBjK | |
class VideoTest < Processing::App | |
load_library :video | |
include_package "processing.video" | |
def setup | |
size(640, 480, P2D) | |
@movie = Movie.new(self, "data/sample.mov") | |
@movie.play | |
end | |
def draw | |
tint(*Array.new(3) { rand(256) }) | |
image(@movie, 0,0) | |
end | |
def movie_event(m) | |
m.read | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment