Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gphoto/gphoto2
The gphoto2 commandline tool for accessing and controlling digital cameras.
https://github.com/gphoto/gphoto2
Last synced: 12 days ago
JSON representation
The gphoto2 commandline tool for accessing and controlling digital cameras.
- Host: GitHub
- URL: https://github.com/gphoto/gphoto2
- Owner: gphoto
- License: gpl-2.0
- Created: 2015-08-01T10:59:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T08:20:27.000Z (7 months ago)
- Last Synced: 2024-06-21T20:02:43.501Z (5 months ago)
- Language: C
- Size: 3.91 MB
- Stars: 678
- Watchers: 37
- Forks: 118
- Open Issues: 318
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# gphoto2
## What is gphoto2?
gphoto2 is a command-line frontend to libgphoto2.
## Where can I find more information?
Visit the gphoto project web site. It should always be found at least
at one of the following URLs:* http://www.gphoto.com/
* http://www.gphoto.org/
* http://gphoto.sourceforge.net/
* https://github.com/gphoto/
* http://sf.net/projects/gphotoThe man page is in the file [gphoto2.1](doc/gphoto2.1).
## How do I build it?
If you have installed libgphoto2 into `$HOME/.local` and want to
install gphoto2 to `$HOME/.local` as well, keep the `PKG_CONFIG_PATH=`
and `--prefix=` arguments to `configure`. Otherwise adapt or remove
them.```
autoreconf -is # if using a git clone
./configure PKG_CONFIG_PATH="$HOME/.local/lib/pkgconfig${PKG_CONFIG_PATH+":${PKG_CONFIG_PATH}"}" --prefix="$HOME/.local"
make
make install
```Out-of-tree builds are supported. `./configure --help` may help.
To build gphoto2, you will need the following (apart from the common build tools):
* The libgphoto2 library.
* The popt libraries (for commandline option handling),
the system package may be called popt-devel or popt-dev or similar.Optional:
* The EXIF library. (libexif-devel, libexif-dev or similar)
* The JPEG library. (libjpeg-devel, libjpeg-dev, or jpeg-dev or similar)
* The CDK library (for ncurses based configuration UI). (cdk-devel or similar)
* The AALIB library (for ascii art rendering of previews). (aalib-devel or similar)## How do I test it?
```
make check
```The test suite checks the installation and basic functionality of the gphoto2
program and the 'Directory Browse' libgphoto2 camera driver.