tags:

views:

341

answers:

5

hello , Im working on a software that needs to do some video functions like converting video to sequence of images and then convert images ( after modifying )back to video

what are the recommended libraries for this tasks

plus ... what are the recommended library for PAINTING over video

thank u very much

A: 

You might want to give PyFFMpeg or PyMedia a try.

Gregory Pakosz
A: 

Hai yaghi, have a look at this http://www.daniweb.com/forums/thread178909.html#

Pandiya Chendur
A: 

i tried pyffmpeg and it looks like its exactly what i want . but it seems like it cannot work over windows 64 bit ?

Moayyad Yaghi
A: 

As Gregory replied, you could use PyMedia. That should easily let you extract the frames and re-encode them afterwards. For "painting" over video, I would just use the Python Imaging Library, generally referred to as PIL. Lots of routines for adjusting images, drawing text or other things on top, and so forth.

Peter Hansen