EDIT: Any camera that can capture at >2fps would work for my application.
I have a 350D that seems to be supported by CHDK that has enough speed.EDIT2: I have an SX200IS with CHDK installed, which has 0.8 fps. Not ideal, but I should be able to work with it, if I can run it at that speed and run other commands between shutter presses.
Hi,
When using my camera (
Canon 60D) manually, I can take multiple pictures by depressing the shutter button every 0.3 - 0.5 seconds, and there is no delay in taking pictures. This isn't the same as just holding down the shutter though and getting the maximum frame rate possible, as I can wait a little longer before taking the next shot if I want to. Now I want to write a script running on my computer to do this for me, but also have it run some other code (language doesn't matter too much. ex. BASH, C, python, lua, ...) between shots.
So for example I would like to script something like this:
----------------
takepic(); # there should be no delay between this command and the next (<10ms)
echo just took picture 1!
sleep 0.2
takepic(); # there should be no delay between this command and the next (<10ms)
echo just took picture 2!
sleep 0.2
takepic(); # there should be no delay between this command and the next (<10ms)
echo just took picture 3!
downloadpics(); # download all 3 files from the camera to the computer
-------------------
is there any way I can do this with CHDK or any other tool?
Thanks