SmilyOrg / photofield

Experimental fast photo viewer.
MIT License
398 stars 7 forks source link

EXIF tags #64

Closed SmilyOrg closed 1 year ago

SmilyOrg commented 1 year ago

Automatically add tags from EXIF data.

The only EXIF tags are the currently hardcoded make and model, and they are added to the file as exif:make:<make> and exif:model:<model> tags respectively.

To enable the automatic addition of these tags, you need to enable it in the config.

tags:
  enable: true
  exif:
    enable: true

Bonus: this PR also fixes the root enable, as only enabled worked before. enabled will keep working for now to not break existing configurations.