Sha256: f98418e4be15e5372d334ad1eda00a4570e490e4829fca529e71f0a37c8adde2
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
require 'aviglitch/base' require 'aviglitch/frame' require 'aviglitch/frames' # AviGlitch provides the ways to glitch AVI formatted video files. # # == Synopsis: # # You can manipulate each frame, like: # # avi = AviGlitch.open '/path/to/your.avi' # avi.frames.each |frame| # if frame.is_keyframe? # frame.data = frame.data.gsub(/\d/, '0') # end # end # avi.output '/path/to/broken.avi' # # Using the method glitch, it can be written like: # # avi = AviGlitch.open '/path/to/your.avi' # avi.glitch(:keyframe) do |data| # data.gsub(/\d/, '0') # end # avi.output '/path/to/broken.avi' # #-- # It does not support AVI2, interleave format. # module AviGlitch VERSION = '0.0.3' class << self ## # Returns AviGlitch::Base instance. # It requires +path_or_frames+ as String or Pathname, or Frames instance. def AviGlitch.open path_or_frames if path_or_frames.kind_of?(Frames) path_or_frames.to_avi else AviGlitch::Base.new(Pathname(path_or_frames)) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aviglitch-0.0.3 | lib/aviglitch.rb |