Displaying 1 result from an estimated 1 matches for "11f68f2c".
2009 Jun 15
0
python bindings update
...Python interface to a theora video stream.
It can read frames as numpy arrays or PIL images.
Example of usage::
>>> from theora import Theora, test_files, VIDEO_DIR
>>> t = Theora(test_files[2])
>>> print t
<Ogg logical stream 11f68f2c is Theora 720x576 25.00 fps
video, encoded frame
content is 720x576 with 0x0 offset, aspect is 16:15>
>>> t.read_frame()
True
[...]
and so on. Then you can literally copy & paste any example from the
documentation/docstrings and it will work.
This is just t...