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.
ESP32 cam video stream?
Re: ESP32 cam video stream?
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
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