This is a command line application to aid in the creation and editing of captions for a gallery of images.
Install:
cargo install photo-captioner
Command Line Options: ``` USAGE: photo-captioner [FLAGS] [OPTIONS] [--] [gallery-dir]
FLAGS: -e, --edit whether or not to edit the captions -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-n, --output-name
-t, --output-type <output-type> The type of output, available options: "csv" [default: csv]
-c, --view-command <view-command>
The command used to launch an image viewer upon editing the caption for an image in order to view the image
who's caption is being edited
-a, --view-command-args <view-command-args>...
The command used to launch an image viewer upon editing the caption for an image in order to view the image
who's caption is being edited. Escape dash "-" symbols with a backslash: "\-". For example: -a "\-\-some"
"command"
ARGS:
CSV output file:
csv
Image,Caption
image_filename.jpg,caption
Using the feh image viewer to preview images while editing captions, and scale them nicely to fit the screen.
photo-captioner -e -c "feh" -a "\-\-scale-down" "\-B" "black" -- /photo/gallery/path
Features available are ticked, todo items remain unchecked until completed.