Page 1 of 1

ESP32 cam video stream?

Posted: Thu Dec 03, 2020 5:19 pm
by dlnl
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.

Re: ESP32 cam video stream?

Posted: Wed Dec 09, 2020 10:17 am
by kr-g
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