Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

generate video pixel by pixel, programmatically

I'd like to generate an animation pixel by pixel programmatically. Preferably in Hi-Def, in Python or in Ruby. I thought about using PIL to make each frame and then convert the frames into video. Is there a better way to do this?

EDIT: Clarification, this is 2D and I need the pixels to be precise.

EDITEDIT:

Something like this:

frame = Frame()
frame.draw(0, 0, 'red')
frame.draw(0, 1, 'blue')
...
frame = Frame()
...

Would be awesome.

like image 953
Austin Richardson Avatar asked May 18 '11 15:05

Austin Richardson


1 Answers

checkout VPython. Its pretty easy and can do what you are looking for.

like image 133
g19fanatic Avatar answered Oct 07 '22 23:10

g19fanatic