-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
default - 1fps video to sd card (v60 and another) #22
Comments
Do you have this in your config.txt file? The 0 interval should be record as fast as possible - which should be about 12 fps 720p on an ov2640 camera. Maybe a slower camera? ov7670?
|
yes, i have this in config.txt
camera ov2640 v3 |
got the same problem, is it solvable? |
Can you post the serial monitor output, or the .txt file from the sd card with debug info. |
Another thought - if the stream does not end normally it cannot accurately set the speed, so make the video length short enough that it ends, or end the video with the web page or the gpio |
Hey buddy @jameszah , firstly thank you for this great project. You should definitely put config.txt file inside v60 folder. I spent a few hours for searching updated config.txt file, finally here I found it on this issue. framebuffer = (uint8_t*)ps_malloc(512 * 192); // buffer to store a jpg in motion // needs to be larger for big frames from ov5640
framebuffer2 = (uint8_t*)ps_malloc(512 * 192); // buffer to store a jpg in motion // needs to be larger for big frames from ov5640
framebuffer3 = (uint8_t*)ps_malloc(512 * 192); // buffer to store a jpg in motion // needs to be larger for big frames from ov5640
I searched through 3 issue pages to be able to run the arduino code. These updates will be helpful to a newbie. And I have a special request: let us make timelapse over taking and saving images only, with an interval. This is actually easy, I already made one. And from my calculations, your ready speedup uses 2000mb but my special request here will be using 150mb only, for 1 hour record. |
Thanks for the polite comments.
It is quite time-consuming to open and close files, and even copying thousands of files onto the computer at the end is very time consuming rather than the 1 avi file. The avi doesn't require much space, just the original jpg's plus 8 bytes per frame for the index, |
Thanks for response. About 4th step, Yes, I meant it. Because it really saves the space in the sd card and maybe it saves also battery capacity consuming a little power. I already wrote a program in python, jpeg to video converter. I tested with 3 hours recording, 1 image per second. it was 1280x720, 7000 photos. It didnt take so much time, maybe 2-3 minutes to copy and process the images into a video. But even without my timelapse request, your work is still very good, I love it. Thank you! Good Job! |
download source - upload default to esp32 (change ssid and password) - start video record - 1fps (micro sd(try 32GB and 1GB)) ;
The text was updated successfully, but these errors were encountered: