Skip to main content

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.

  1. Build Docker image:

    $ git clone https://github.com/luiscarlosgph/rtspwebviewer.git
    $ cd rtspwebviewer
    $ docker build -t rtspwebviewer docker
    
  2. 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>, use 0.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

rtspwebviewer-0.1.3.tar.gz (17.7 kB view hashes)

Uploaded Source

Supported by

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