Metadata-Version: 2.1
Name: rtspwebviewer
Version: 0.1.0
Summary: Simple web viewer for RTSP streams.
Home-page: https://github.com/luiscarlosgph/rtspwebviewer
Author: Luis C. Garcia-Peraza Herrera
Author-email: luiscarlos.gph@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

Description
-----------

Web server that displays an RTSP video stream.

Install with pip
----------------

```bash
$ pip install rtspwebviewer --user
```

Install from source
-------------------

```bash
$ python3 setup.py install
```

Run 
---

* Syntax:
  ```bash
  $ python rtspwebviewer.run -u <rtsp_stream> -a <listening_ip_address> -p <port> -t <web_title>
  ```

* Example:
  ```bash
  $ python rtspwebviewer.run -u 'rtsp://user:pass@127.0.0.1:8669/unicast' -a 0.0.0.0 -p 7654 -t 'RTSP Web Viewer'
  ```
  In this case, you would connect to [http://127.0.0.1:7654](http://127.0.0.1:7654) and you would see a website with the video stream. The IP address `0.0.0.0` means that the web server will listen in all your network interfaces.


