Metadata-Version: 1.2
Name: v4l2-fix
Version: 0.3
Summary: Python bindings for the v4l2 userspace api.
Home-page: http://pypi.python.org/pypi/v4l2
Author: python-v4l2-devel
Author-email: 
Maintainer: ArduCam
Maintainer-email: ArduCam <support@arducam.com>
License: GPLv2
Description: python-v4l2
        ===========
        
        A Python binding for the v4l2 (video4linux2) userspace api, using
        ctypes.  Basic example usage::
        
            >>> import v4l2
            >>> import fcntl
            >>> vd = open('/dev/video0', 'a')
            >>> cp = v4l2.v4l2_capability()
            >>> fcntl.ioctl(vd, v4l2.VIDIOC_QUERYCAP, cp)
            0
            >>> cp.driver
            'uvcvideo'
            >>> cp.card
            'USB 2.0 Camera'
        
        See the ``linux/videodev2.h`` header file for details.  Currently the
        bindings are up to date with the 2.6.34 kernel headers.
        
        * `Video for Linux Two Specification <http://linuxtv.org/downloads/v4l-dvb-apis/ch07s02.html>`_
        * `Reporting bugs <http://bugs.launchpad.net/python-v4l2>`_
        
Keywords: v4l2 video4linux video4linux2 binding ctypes
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Multimedia :: Video :: Capture
Requires: ctypes
