Skip to content

Instantly share code, notes, and snippets.

@julik
Created August 30, 2009 21:38
Show Gist options
  • Save julik/178161 to your computer and use it in GitHub Desktop.
Save julik/178161 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'depix'
dpx_pattern = "/Users/julik/Desktop/Film/E036/*.dpx"
Dir.glob(dpx_pattern).each do | dpx_path |
dpx = Depix.from_file(dpx_path)
print "%dx%d" % [dpx.image.pixels_per_line, dpx.image.lines_per_element]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment