5

Is it possible to trigger two Cameras connected by USB to a single RPi at the same time with 1 ms latency?

SlySven
  • 3,631
  • 1
  • 20
  • 46

2 Answers2

1

If you have the right Canon cameras you can use the Canon Hack Development Kit CHDK. I use that and StereoData Maker to trigger two cameras. You turn the 5v USB pin on to trigger the camera so you need to convert the 3v gpio to 5v.

PaulF8080
  • 307
  • 1
  • 7
0

Try something like;

streamer -c /dev/video0 -b 16 -o a.jpg & streamer -c /dev/video1 -b 16 -o b.jpg &

The & makes the second command run without waiting for the first one to finish.

user1133275
  • 2,216
  • 16
  • 32