A library for reading simple uncompressedor RLE compressed AVI files.
Project description
A native Python library (other than it’s dependence on Numpy) to read uncompressed and RLE-compressed AVI files.
The following is a simple example showing how to iterate over the frames in an AVI file:
>>> import matplotlib >>> matplotlib.use('TKAGG') >>> import matplotlib.pyplot as plt >>> import avifilelib >>> a = avifilelib.AviFile('sample.avi') >>> for ct, frame in enumerate(a.iter_frames(stream_id=0)): _ = plt.imshow(frame, origin='lower') plt.gcf().savefig('frame_{:02d}.png'.format(ct)) >>> a.close()
See the API documentation for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size avifilelib-0.9.1.tar.gz (14.9 kB) | File type Source | Python version None | Upload date | Hashes View |