Metadata-Version: 2.0
Name: jaraco.video
Version: 2.2
Summary: A pure-python framegrabber for Windows
Home-page: https://github.com/jaraco/jaraco.video
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Multimedia :: Video :: Capture
Requires-Python: >=2.7
Provides-Extra: docs
Provides-Extra: testing
Requires-Dist: comtypes
Requires-Dist: Pillow
Requires-Dist: jaraco.structures
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: jaraco.packaging (>=3.2); extra == 'docs'
Requires-Dist: rst.linker (>=1.9); extra == 'docs'
Provides-Extra: testing
Requires-Dist: pytest (>=3.5); extra == 'testing'
Requires-Dist: pytest-sugar (>=0.9.1); extra == 'testing'
Requires-Dist: collective.checkdocs; extra == 'testing'
Requires-Dist: pytest-flake8; extra == 'testing'

.. image:: https://img.shields.io/pypi/v/jaraco.video.svg
   :target: https://pypi.org/project/jaraco.video

.. image:: https://img.shields.io/pypi/pyversions/jaraco.video.svg

.. .. image:: https://img.shields.io/travis/jaraco/jaraco.video/master.svg
..    :target: https://travis-ci.org/jaraco/jaraco.video

.. image:: https://img.shields.io/appveyor/ci/jaraco/jaraco-video/master.svg
   :target: https://ci.appveyor.com/project/jaraco/jaraco-video/branch/master

.. .. image:: https://readthedocs.org/projects/jaracovideo/badge/?version=latest
..    :target: https://jaracovideo.readthedocs.io/en/latest/?badge=latest

``jaraco.video`` implements a framegrabber inteface for Windows Video Capture
devices.

``jaraco.video`` is a port of the `VideoCapture module
<http://videocapture.sourceforge.net/>`_ in pure Python using ctypes
and comtypes.

`jaraco.video` is designed to run on Python 2.7+, including Python 3,
and including 32-bit and 64-bit versions of Python.

Usage
-----

``jaraco.video`` includes a console script "save-frame", which
locates the first video capture device and saves a single frame
to disk as "test.jpg". The command may also be invoked thus::

    python -m jaraco.video.capture

This example usage can be seen in the function
``jaraco.video.capture:save_frame``.


