Esp32-cam - see out of my apartment window. I am testing my esp32-cam, freeform and micropython setup I mentioned yesterday. With some minor timeout adjustments, I managed to get a rather decent live video stream out of it.
I was using kazam to capture video stream out of the esp32-cam from a webpage. You can install kazam on you linux machine using apt install.
$ sudo apt install kazam
By the way, I do all my projects on linux machines.
The esp32-cam was program using micropython as image capture and a web server. It listens on port 80 for live video request and port 81 for still image.
I will write the detail of the code in a later blog post. But as a starter, these are the modules I used in the code.
Catch you later.
I was using kazam to capture video stream out of the esp32-cam from a webpage. You can install kazam on you linux machine using apt install.
$ sudo apt install kazam
By the way, I do all my projects on linux machines.
The esp32-cam was program using micropython as image capture and a web server. It listens on port 80 for live video request and port 81 for still image.
I will write the detail of the code in a later blog post. But as a starter, these are the modules I used in the code.
import usocket as soc import uasyncio as sy import camera import time import esp from machine import Pin import gc from Wifi import Wifi
Catch you later.
Comments
Post a Comment