diff --git a/README.md b/README.md
index 1b96083..705766b 100644
--- a/README.md
+++ b/README.md
@@ -2,14 +2,29 @@
[](https://github.com/rzeldent/esp32cam-rtsp/actions/workflows/main.yml)
-Simple [RTSP](https://en.wikipedia.org/wiki/Real_Time_Streaming_Protocol) server.
+Simple [RTSP](https://en.wikipedia.org/wiki/Real_Time_Streaming_Protocol), [HTTP JPEG Streamer](https://en.wikipedia.org/wiki/Motion_JPEG) and server.
Easy configuration through the web interface.
-Flashing this software on a ESP32CAM module will make it a **RTSP streaming camera** server.
+Flashing this software on a ESP32CAM module will make it a **RTSP streaming camera** server, a **HTTP Motion JPEG streamer*** and a **HTTP image server**.
+
+### RTSP
The RTSP protocol is an industry standard and allows many CCTV systems and applications (like for example [VLC](https://www.videolan.org/vlc/)) to connect directly to the ESP32CAM camera stream.
It is also possible to stream directly to a server using [ffmpeg](https://ffmpeg.org).
This makes the module a camera server allowing recording and the stream can be stored on a disk and replayed later.
+The URL is rtsp://<ip address of the module>:554/mjpeg/1
+
+### HTTP Motion JPEG
+The HTTP JPEG streamer makes it possible to watch the camera stream directly in your browser.
+
+The URL is http://<ip address of the module>/stream
+
+### HTTP image server
+The HTTP Image server returns an HTTP jpeg image of the camera.
+
+The URL is http://<ip address of the module>/snapshot
+
+
This software supports the following ESP32-CAM (and alike) modules:
- ESP32CAM
diff --git a/html/index.html b/html/index.html
index 7bf10b3..7276492 100644
--- a/html/index.html
+++ b/html/index.html
@@ -273,14 +273,17 @@
The intensity of the flash led (0-255) can be controlled using: http://{{IpV4}}/flash?v=value. Authentication is required and if no value is present, the configuration value is used.
Restarting the camera can be done using: http://{{IpV4}}/restart. Authentication is required.
The intensity of the flash led (0-255) can be controlled using: http://{{IpV4}}/flash?v=value. Authentication is required and if no value is present, the configuration value is used.
Restarting the camera can be done using: http://{{IpV4}}/restart. Authentication is required.