ESP32 cam video stream?

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
Post Reply
dlnl
Posts: 4
Joined: Thu Oct 10, 2019 3:48 pm

ESP32 cam video stream?

Post by dlnl » Thu Dec 03, 2020 5:19 pm

Hi,
I have an ESP32 with cam.
I have an arduino script which I can compile and upload which allows me to create a video stream that I can access by its ip address in my browser.
Since I'm a fan of python I would like to create a video stream with the ESP32 + CAM, but then with micropython.

Is this at all possible? I can only find a micropython version with which I can capture an image, but not create a video stream.

Any guidance / explanation would be much appreciated.

Thanks.

kr-g
Posts: 48
Joined: Sun Dec 01, 2019 7:52 pm
Contact:

Re: ESP32 cam video stream?

Post by kr-g » Wed Dec 09, 2020 10:17 am

for that you would need to serve (like a webserver) HTTP RANGE requests.

Range Request on MDN:
https://developer.mozilla.org/en-US/doc ... ders/Range

on the client (web-browser) you put a <video> tag
https://developer.mozilla.org/de/docs/W ... ment/video

Post Reply