jameszah

Results 106 comments of jameszah
trafficstars

I'm adding that in a future release. Basically, you have to convert every jpg from the camera to a bmp, then use some espressif routines to add the text, then...

Good idea - I hadn't read the srt spec - it looks straightforward. Amusing that there seems to be nothing more official than this: http://forum.doom9.org/archive/index.php/t-73953.html

Some example code over here, if anyone is looking - it overlays time, altitude, acceleration for small rockets, https://github.com/jameszah/ESP32-CAM-RocketCam

Hmmm ... good question. I've thought about the "text-over-image" issue. I think the way that code works is to convert the jpg to an rgb, then write the text onto...

Just working on this ... You said this "SPIRam Free Heap 1314204" earlier, which is what I recall, but now I'm getting "SPIRam Free Heap 3006143" before I have done...

Using a VGA frame 640x480 or 921600 bytes for the rgb888, it takes about a second to covert it to rgb and write some text, then convert it back to...

Here is some commented-out code to horizontal and vertical flip the image. https://github.com/jameszah/ESP32-CAM-Video-Recorder-junior/blob/b1169bb7aea5afb721b0807aad8bf33840660215/v58/ESP32-CAM-Video-Recorder-junior-58x.ino#L446 ... and the full selection of camera configuration parameters .... a few lines above these are the...

The arduino_event disconnected thing looks like you need to upgarde your arduino board library to esp32-arduino 2.0.2 (or more) The defualts in code are not used -- you have to...

Thanks. I think I jammed as much functionality into the ESP32-CAM board as will fit, so I'm thinking of ordering some of the TTGO or ESP32-EYE boards -- the one...

https://github.com/jameszah/ESP32-CAM-Video-Recorder/blob/b6c9af8970bc2321935662286603da7ce6484271/vA1/TimeLapseAviA1x.ino#L540 This one records 15 seconds after the signal goes off - so 15 sec minimum - but will record for as long as the pir is showing active. If...