Różnice między wybraną wersją a wersją aktualną.
komputery:gphoto2capture [2014-02-27 02:02] |
komputery:gphoto2capture [2014-02-27 02:02] (aktualna) |
||
---|---|---|---|
Linia 1: | Linia 1: | ||
+ | ====== Capturing images using gphoto2 ====== | ||
+ | |||
+ | I'll describe here how to automatically capture images with Canon A75 using gphoto2 software. | ||
+ | |||
+ | After connecting camera first step is to enable capture mode: | ||
+ | <code> | ||
+ | gphoto2 --set-config /main/settings/capture=1 | ||
+ | </code> | ||
+ | |||
+ | Next capture image and download it: | ||
+ | <code> | ||
+ | gphoto2 \ | ||
+ | --set-config /main/capturesettings/shootingmode=Manual \ | ||
+ | --set-config /main/capturesettings/shutterspeed=1/50 \ | ||
+ | --set-config /main/capturesettings/aperture=4.5 \ | ||
+ | --capture-image-and-download | ||
+ | </code> | ||
+ | |||
+ | To see list of available configuration settings execute: | ||
+ | <code> | ||
+ | gphoto2 --list-config | ||
+ | </code> | ||
+ | |||
+ | To see possible values of certain setting: | ||
+ | <code> | ||
+ | gphoto2 --get-config /main/capturesettings/shutterspeed | ||
+ | </code> | ||
+ | |||
+ | To use a GUI to set configuration: | ||
+ | <code> | ||
+ | gphoto2 --config | ||
+ | </code> | ||