How to capture long exposure stills one after each other without delay between captures #343
-
Hi, Many thanks in advance? Kees. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 8 replies
-
Hello hello! This is a use case for us as well (hello fellow sky observer!). This isn't fully possible with |
Beta Was this translation helpful? Give feedback.
-
Hi, your libcamera-still command looks fine to me. You could do it as a timelapse, and I expect the results would essentially be the same:
I'd expect this to do a capture every (just over) 20 seconds (obviously the minimum given the exposure time). There will be a small gap between each capture when the camera switches between modes, though you could use
In this case you'd have to write a small script to rename the files according to their creation dates. If you wanted to use Picamera2 I would try something like this:
Again, I'd expect this to give you a frame every 20 seconds. Picamera2 does have a |
Beta Was this translation helpful? Give feedback.
-
Howdy gang, I'm following this helpful guidance and am getting a result that is bending my noodle. My command line is using the libcamera-still method that David suggested, and I've tweaked it a bit for my light levels (here is the specific syntax: libcamera-still -t 0 -n --timelapse 1 --shutter 15000000 --gain 8 --awbgains 1,1 --contrast 4 --datetime) and what happens is I get four or five lovely images, and then not so lovely images thereafter. I've attached examples so you can see what I'm trying to describe. One has more stars shown and is clearer than the other. I thought maybe this was a deal where the delay between shots might be exhausting a buffer, so I've tried --timelapse 2000 per the documentation default and that didn't seem to make any difference. Do you all have any idea what I'm up against? The hardware is RPi 4 4gb and a v3 camera with no IR filter. I'm quite pleases with the good image, and would like to collect those all night if I can. Thank you thank you thank you! |
Beta Was this translation helpful? Give feedback.
-
Hi, thanks for the question. I wonder if it may be related to the fact that you're using a v3 camera with autofocus? By default libcamera-still will start in continuous autofocus mode which means the lens is prone to start refocussing spontaneously - and this probably won't work too well with images like this. Maybe add |
Beta Was this translation helpful? Give feedback.
Hi, your libcamera-still command looks fine to me. You could do it as a timelapse, and I expect the results would essentially be the same:
I'd expect this to do a capture every (just over) 20 seconds (obviously the minimum given the exposure time). There will be a small gap between each capture when the camera switches between modes, though you could use
libcamera-vid
to avoid that:In this case you'd have to write a small script to rename the files according…