I have trouble searching how to work in a list of images (sparse in lightroom folder) to put "model" on selected files.
I have generated a text file from a LR collection, let me say:
D:\foto\1988\Grecia\1988-08 Grecia E-50019.jpg
D:\foto\1988\Grecia\1988-08 Grecia Z rimaste da santino Paolo-8001.tif
D:\foto\1989\1989-01 BO Lucio Dalla-Morandi-1001.jpg
...
then I would like exiftool would walk my file and put -model="camera model" only on these file
How can I do?
If your text file is called "files.txt", then the command is:
exiftool -model="camera model" -@ files.txt
- Phil
Than you very much.