Skip to content

Instantly share code, notes, and snippets.

@ucnv
Created August 2, 2009 07:17
Show Gist options
  • Save ucnv/159979 to your computer and use it in GitHub Desktop.
Save ucnv/159979 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'aviglitch'
avi = AviGlitch.new ARGV.first
avi.glitch(:videoframe) do |frame|
frame[128] = "\000" if frame.size > 128
frame
end
avi.write 'out.avi'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment