Go to file
jameszah f126b0416f
Add files via upload
2020-09-14 16:00:40 -06:00
ESP32-CAM-Video-Recorder-junior-02x.ino Add files via upload 2020-09-13 00:15:07 -06:00
ESP32-CAM-Video-Recorder-junior-04x.ino Add files via upload 2020-09-13 23:59:04 -06:00
LICENSE Initial commit 2020-09-13 00:12:39 -06:00
README.md Update README.md 2020-09-13 23:59:38 -06:00
web_v04.jpg Add files via upload 2020-09-14 16:00:40 -06:00

README.md

ESP32-CAM-Video-Recorder-junior

Simple fast version of ESP32-CAM-Video-Recorder

ESP32-CAM-Video-Recorder-junior

This program records an mjpeg avi video to the sd card of an ESP32-CAM.

You can just compile, download, power-on ... and it will record a series of 3 minute, SVGA videos on your SD card ... while you read on ...

Update Sep 13, 2020 - adding complexity

v02 - basic version

v04 - added wifi, time, stream @ 5 fps, and photos @ 1 fps - you need to add your wifi ssid and password below - if you walk away from your wifi, then wifi will fail and continue recording - if you walk back to your wifi -- I think it will not recover until reboot

Original Sep 12, 2020

by James Zahary Sep 12, 2020 jamzah.plc@gmail.com

https://github.com/jameszah/ESP32-CAM-Video-Recorder-junior

https://github.com/jameszah/ESP32-CAM-Video-Recorder

jameszah/ESP32-CAM-Video-Recorder is licensed under the
GNU General Public License v3.0

jameszah/ESP32-CAM-Video-Recorder-junior is licensed under the
GNU General Public License v3.0

The is Arduino code, with standard setup for ESP32-CAM - Board ESP32 Wrover Module - Partition Scheme Huge APP (3MB No OTA)

It is the junior version of https://github.com/jameszah/ESP32-CAM-Video-Recorder which has 100 other features of wifi, streaming video, http control, telegram updates, pir control, touch control, ftp downloads, .... and other things that make it very big and complex.

This one is written in simple arduino code without any semaphores, tasks, priorities, RTOS stuff ....

Just set 4 parameters, compile and download, and it will record on power-on, until sd is full, or power-off. Then pull out the sd and move it to your computer, and you will see all but the last file avi which died during the unplug.

Update: I added some complexity. Connect Pin 12 to GND to stop a video -- no dead videos -- and prevent recording. Release Pin 12 and it will record forever.

Compile Time Parameters

  1. framesize 10,9,7,6,5 for 10 - UXGA (1600x1200 @ 6 fps), 9 - SXGA (1280x1024 @ 6 fps), 7 - SVGA(800x600 @ 24 fps), 6 - VGA(640x480 @ 24 fps), 5 - CIF(400x296 @ 50 fps)
  2. quality - 1 to 63 - 10 is a good start, increase to 20 to get more frames per second - must be higher than jpeg_quality below
  3. avi_length - seconds for each avi - it closes files, and starts another file after this time - like 60 or 1800
  4. devname - a text name for your camera when the files are on your computer

Note that framesize and high quality will produce lots of bytes which have to written to the sd. Those frame rates above are for the OV2640 camera, and your sd card will have to be able to swallow all that data before the next frame. If the sd card cannot take all that data, then the camera will be idle waiting for the sd. Lower the framesize (UXGA -> SVGA), and lower the quality (10 -> 15 -> 20, higher number is lower quality) to improve framerate to the camera limits. If you have a fast enough sd card, it will record at the full speed of the camera.

Using a Lexar 633x circle10, U3, V30 SD card, with quality set at 20, it will record at full speed of the camera -- in dull indoor light. In bright outdoor light - looking at the sun - it will slow down by half - to about 12 fps SVGA. You could lower quality to keep that at a higher fps, if you insist on looking at the sun.

Using a dollarstore SD card - EAGET circle10, U1 - it will record at about half of the camera capacity -- in dull indoor light.

You can look at the blinking red led on the back of the chip to see the recording rate -- sd chips for video are made to be more predictable.

The files will have the name such as:

desklens 10.3 + 120s.avi

"desklens" is your devname
10 - is a number stored in eprom that will increase everytime your device boots
3 - is the 3rd file created during the current boot
+120s - is an indictation of how long since we started recording on this boot
      - this is the 3rd file, and started 120 seconds after the boot, so the files must be 60 seconds long

Small red led on the back blinks with every frame.