Metadata-Version: 1.2
Name: python-video-thumbnail
Version: 0.1.0
Summary: Python package for capturing frames from video.
Home-page: https://github.com/mikolajkosmal/python_video_thumbnail
Author: Mikolaj Kosmal
Author-email: mikolaj.kosmal@gmail.com
License: MIT license
Description: ======================
        Python Video Thumbnail
        ======================
        
        
        .. image:: https://img.shields.io/pypi/v/python_video_thumbnail.svg
                :target: https://pypi.python.org/pypi/python_video_thumbnail
        
        .. image:: https://img.shields.io/travis/mikolajkosmal/python_video_thumbnail.svg
                :target: https://travis-ci.com/mikolajkosmal/python_video_thumbnail
        
        
        Python package for capturing frames from video.
        Written as replacement of https://github.com/radek-senfeld/ffvideo package,
        and to help with transition of Python 2.7 projects that relay on FFVideo, to Python 3.
        
        
        Features
        --------
        * Supports file paths and urls
        * Supports image resizing
        
        Usage ::
        
                from python_video_thumbnail import VideoFrames
        
                vf = VideoFrames(
                        source="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4",
                        frame_numbers=[6000],
                        img_options={"width": 128},
                        format=".png"
                )
        
                captured_frames = vf.capture()
        
                with open("captured_frame.png", "wb") as f:
                        f.write(captured_frames[0].getvalue())
        
        
        
        Credits
        -------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
        
        =======
        History
        =======
        
        0.1.0 (2021-10-02)
        ------------------
        
        * First release on PyPI.
        
Keywords: python_video_thumbnail
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: <3.9
