views:

109

answers:

2
+1  Q: 

Snapshot Movies

I'm currently learning Python and have taken up several small projects to help learn the language. Are there currently any libraries (possibly PythonMagick) out there that are capable of extracting snapshots from .wmv, .avi, .mpg, or other movie formats with only command-line options (no GUI)? And if so, can anyone provide links to examples of code?

+1  A: 

A quick search in google revealed pymedia. It supports avi, dvd, wma, ...

Here is an example on how to get snapshots from videos

Nadia Alramli
A: 

Additionally, if the CLI situation is not mandatory Pyglet is exceptionally easy to use to load movies, images, etc. and is very well documented.

qat