Skip to main content

RTSP client

Project description

# RTSP Package

/((((((\\\\
=======((((((((((\\\\\
(( \\\\\\\
( (* _/ \\\\\\\
\ / \ \\\\\\________________
| | | </ __ ((\\\\
o_| / ____/ / _______ \ \\\\ \\\\\\\
| ._ / __/ __(_-</ _ \ \ \\\\\\\\\\\\\\\\
| / /_/ \__/___/ .__/ / \\\\\\\ \\
.______/\/ / /_/ / \\\
/ __.____/ _/ ________( /\
/ / / ________/`---------' \ / \_
/ / \ \ \ \ \_ \
( < \ \ > / \ \
\/ \\_ / / > )
\_| / / / /
_// _//
/_| /_|


RTSP Client. Requires OpenCV-Python

## Features

* fetch a single image as Pillow Image
* open RTSP stream and poll most recent frame as Pillow Image
* preview stream in OpenCV

* Robustness
* configurable number of frames to allow dropped
* configure time to retry creating a new connection

## Examples

One-off Retrieval

import rtsp
client = rtsp.Client(rtsp_server_uri = 'rtsp://...')
client.read().show()
client.close()

Stream Preview

import rtsp
with rtsp.Client('rtsp://...') as client:
client.preview()

Continuous Retrieval

import rtsp

with rtsp.Client(rtsp_server_uri = 'rtsp://...',drop_frame_limit=10) as client:
_image = client.read()

while True:
process_image(_image)
_image = client.read()

Verbose mode

In [1]: import rtsp
In [2]: client = rtsp.Client()
Connected to RTSP video source rtsp://192.168.1.3/ufirststream/track1.
In [3]: client.preview()
In [4]: client.close()
Dropped RTSP connection.
Received signal to stop.
In [5]: client.open()
Connected to RTSP video source rtsp://192.168.1.3/ufirststream/track1.
In [6]: client.read().show()
Connected to RTSP video source rtsp://192.168.1.3/ufirststream/track1.
In [7]: client.close()
Dropped RTSP connection.
Received signal to stop.

## Roadmap:
* v1.0.0 - basic function relying on OpenCV or ffmpeg
* v2.0.0 - lightweight native-Python implementation rtsp client functions
* live stream reading & buffer
* on-demand frame retrieval
* v2.1.0 - native Python rtsp server functions

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rtsp-1.1.0.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rtsp-1.1.0-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file rtsp-1.1.0.tar.gz.

File metadata

  • Download URL: rtsp-1.1.0.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.5

File hashes

Hashes for rtsp-1.1.0.tar.gz
Algorithm Hash digest
SHA256 05065014618801dde3f09ae5fb7d8fcf216e285f3b62038327c9b673622f3a22
MD5 4090b76d40fadde10c0aec829568029c
BLAKE2b-256 64788014d0e0aa40c92e53d25347292fb8d35183e40bf9d2c578dfe528f059f0

See more details on using hashes here.

File details

Details for the file rtsp-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: rtsp-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.5

File hashes

Hashes for rtsp-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 95b4e8fc1d06adc5db1091f1a8e3c345b0730d2dc8d709d203fa6b6c8545506b
MD5 c977dc275a6de3a6a144cfdc0ae439ec
BLAKE2b-256 4dabcf80a75a523a21dff7057342747a601e04f17259c8c62ad58fc06286a111

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page