Simple web viewer for RTSP streams.
Project description
Description
Web server that displays an RTSP video stream.
It is not a very efficient solution in terms of video transmission, but you will be able to see the video stream from all devices (Windows, Linux, Mac, iPhone, Android).
Audio is not supported.
Use case
You have a security camera that streams in RTSP (e.g. Foscam) and want to make the video accessible via web.
Install with pip
$ pip install rtspwebviewer --user
Install from source
$ git clone https://github.com/luiscarlosgph/rtspwebviewer.git
$ cd rtspwebviewer
$ python3 setup.py install
Run
-
Syntax:
$ python -m rtspwebviewer.run -a <listening_ip_address> -p <port> -t <web_title> -w <password> -u <rtsp_address>
You can specify up to four RTSP addresses, e.g.
-u <rtsp_address> <rtsp_address> <rtsp_address> <rtsp_address>
-
Example:
$ python -m rtspwebviewer.run -a 0.0.0.0 -p 7654 -t 'RTSP Web Viewer' -w fancypassword -u 'rtsp://user:pass@127.0.0.1:8669/unicast'
In this case, you should access http://127.0.0.1:7654/fancypassword to see the website displaying the video stream.
The IP address
0.0.0.0
means that the web server will listen in all your network interfaces.The password parameter is optional, if you do not specify one, you should access http://127.0.0.1:7654 to see the video.
Run Docker container
If you do not have Docker installed, you have an install guide here.
-
Build Docker image:
$ git clone https://github.com/luiscarlosgph/rtspwebviewer.git $ cd rtspwebviewer $ docker build -t rtspwebviewer docker
-
Deploy container:
$ docker run -it --name rtspwebviewer --net=host --restart=always rtspwebviewer:latest python -m rtspwebviewer.run -a <listening_address> -p <listening_port> -t <web_title> -w <web_password> -u <rtsp_address> &
Access the camera view in
http://<ip>:<port>/<web_password>
If you do not know what to put on
<listening_address>
, use0.0.0.0
(i.e. listen in all network interfaces).A password is not necessary.
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
File details
Details for the file rtspwebviewer-0.1.3.tar.gz
.
File metadata
- Download URL: rtspwebviewer-0.1.3.tar.gz
- Upload date:
- Size: 17.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9cb2d7ae4fcb084e62f94ea143e3676fe3fdcea5c813a16a3c3b8b1d6cf2d13 |
|
MD5 | dcd890ce1a7c8f5e6a2cb30d85823631 |
|
BLAKE2b-256 | 9d00dc7c35f46b2efb4457f23634199687457c2b645a64e31473270a25355b93 |