Metadata-Version: 2.1
Name: rtsp
Version: 1.0.8
Summary: ffmpeg wrapper for RTSP client
Home-page: https://github.com/statueofmike/rtsp
Author: Michael Stewart
Author-email: statueofmike@gmail.com
License: MIT
Download-URL: https://github.com/statueofmike/rtsp/archive/1.0.8.tar.gz
Description: # RTSP Package
        
                    /((((((\\\\
            =======((((((((((\\\\\
                 ((           \\\\\\\
                 ( (*    _/      \\\\\\\
                   \    /  \      \\\\\\________________
                    |  |   |      </    __             ((\\\\
                    o_|   /        ____/ / _______       \ \\\\    \\\\\\\
                         |  ._    / __/ __(_-</ _ \       \ \\\\\\\\\\\\\\\\
                         | /     /_/  \__/___/ .__/       /    \\\\\\\     \\
                 .______/\/     /           /_/           /         \\\
                / __.____/    _/         ________(       /\
               / / / ________/`---------'         \     /  \_
              / /  \ \                             \   \ \_  \
             ( <    \ \                             >  /    \ \
              \/      \\_                          / /       > )
                       \_|                        / /       / /
                                                _//       _//
                                               /_|       /_|
        
        
        RTSP Client. Requires [ffmpeg](https://www.ffmpeg.org/) system call for RTSP support and [Pillow](https://pillow.readthedocs.io/en/5.1.x/) for parsing and conversion.
        
        ## Features
        
          * fetch a single image as Pillow Image
          * open RTSP stream in FFmpeg and poll for most recent frame
        
        ## Examples
        
        One-off Retrieval
        
            import rtsp
            image = rtsp.fetch_image('rtsp://1.0.0.1/StreamId=1')
        
        Continuous Retrieval
        
            import rtsp
        
            collector = rtsp.FFmpegListener()
        
            image = collector.read()
        
        Continuous Retrieval Context Manager
        
            import rtsp
            with rtsp.FFmpegListener() as collector:
                _image = collector.read()
        
                while True:
                    process_image(_image)
                    _image = collector.read()
Keywords: rtsp ffmpeg image stream
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Multimedia :: Video :: Capture
Classifier: Topic :: System :: Networking
Requires-Python: >=3.5
Description-Content-Type: text/markdown
