Metadata-Version: 1.0
Name: jaraco.video
Version: 1.1.1
Summary: A pure-python framegrabber for Windows
Home-page: http://pypi.python.org/pypi/jaraco.video
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: MIT
Description: .. -*- restructuredtext -*-
        
        ============
        jaraco.video
        ============
        
        .. contents::
        
        Status and License
        ------------------
        
        ``jaraco.video`` is a port of the `VideoCapture module
        <http://videocapture.sourceforge.net/>`_ in pure Python using ctypes
        and comtypes.
        
        ``jaraco.video`` is maintained by Jason R. Coombs.  It is licensed under
        an `MIT-style permissive license
        <http://www.opensource.org/licenses/mit-license.php>`_.
        
        You can install it with ``easy_install jaraco.video``, or from the
        `mercurial repository
        <http://bitbucket.org/jaraco/jaraco.video/get/tip.zip#egg=jaraco.video-dev>`_
        with
        ``easy_install jaraco.video==dev``.
        
        `jaraco.video` is designed to run on Python 2.5+, including Python 3,
        and including 32-bit and 64-bit versions of Python.
        
        Issues
        ------
        
        It does not currently install properly on Python 2.7 due to `a bug in
        comtypes
        <https://sourceforge.net/tracker/?func=detail&aid=3036368&group_id=115265&atid=692940>`_.
        
        Although the package currently installs on Python 3, there is currently
        no supported version of PIL for Python 3, so only raw bitmap data will
        be available (no JPEG support, etc).
        
        Usage
        -----
        
        `jaraco.video` includes a console script "save-frame" which if invoked
        will locate the first video capture device and attempt to save a frame
        to disk as "test.jpg".
        
        This example usage can be seen in `jaraco.video.capture:save_frame`.
        
        History
        -------
        
        1.1
        ~~~
        
        * Moved typelibs so they will be included with the build.
        * Fixed ImportError on Python 3.
        * Added readme.
        
        1.0
        ~~~
        
        * First non-dev release. Typelibs are included and comtypes libs are
          generated automatically.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Video :: Capture
