https://github.com/rossant/phop
https://github.com/rossant/phop
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rossant/phop
- Owner: rossant
- Created: 2015-08-04T14:42:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-04T14:42:59.000Z (over 10 years ago)
- Last Synced: 2025-01-20T23:27:58.568Z (12 months ago)
- Size: 93.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# phop
A command-line photo manager in Python.
## Features
* Filter and sort photos
* Fast viewer (windowed and fullscreen)
* Set rating in XMP metadata
## Examples
```
phop view [files] # view all photos
phop rating [files] # print the rating
```
## Filtering and sorting
```
--sort name|date|star
--filter star>=3
--desc
--asc
```
## Keyboard shortcuts in view mode
* left/right to navigate
* F to toggle fullscreen mode
* S to star (rating=1)
* 1-5 to star
* escape to quit
## Random notes
How to get/set XMP rating in JPEG metadata with exiv2:
```
exiv2 "-Mset Xmp.xmp.Rating 1" test.jpg
exiv2 pr .\test.jpg -P X
```