I am trying to rename all files located in a directory (recursively) with a specific meta data field appended to the end of the png file name. the meta data field name is "aesthetic_score" with a value range from 1.0-9.0
when I type:
exiftool -Aesthetic_score -G1 -s testn.png
the result is:
[PNG] Aesthetic_score : 7.0
This is how I would like to append the png files recursively within a directory. Note i would like to swap out the word aesthetic with the word chad in the append, and not all files will have this data field:
input file: filename001.png (metadata aesthetic_score:7.0)
output: filename001-chad-score-70.png
I tried to use Digikam and JExifToolGui-2.01, without success. I am trying to perform this task in the cmd line, although other solutions are welcome. Thank you for your help.