Metadata-Version: 1.2
Name: avifilelib
Version: 0.9.1
Summary: A library for reading simple uncompressedor RLE compressed AVI files.
Home-page: https://github.com/michaeluhl/avifilelib
Author: Michael Uhl
License: LGPL
Description: avifilelib
        ==========
        
        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:
        
        .. code:: python
        
            >>> 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 <http://avifilelib.readthedocs.io/en/latest/index.html>`__ for more information.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3
