Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
2

searching for a specific metafield value not on the Criteria drop-down list

Participant ,
Jan 17, 2024 Jan 17, 2024

Is there a way to find a particular metadata field value that isn't on the (presumably) fixed Criteria drop-down list?  For example, I would like to find files with the ‘Credit Line’ metadata field having a value of ‘Harvey’ (see attached screenshots).  I know the ‘All Metadata’ selection will work, but I just want to zero in on files with values for that particular meta field. 

 

In other words, is there a way to add, say, the ‘Credit Line’ metadata field to the Criteria drop-down list?

 

AvailableSearchCriteria.pngspecific.png

TOPICS
How to , Metadata
481
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jan 19, 2024 Jan 19, 2024

https://github.com/Paul-Riggott/PS-Scripts/blob/master/Expert%20Search.jsx

 

You may need to look into File > File Info > Raw Data to find the required info for the prefix and namespace fields.


https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html

 

 

Translate
LEGEND ,
Jan 17, 2024 Jan 17, 2024

Not without scripting.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 19, 2024 Jan 19, 2024

https://github.com/Paul-Riggott/PS-Scripts/blob/master/Expert%20Search.jsx

 

You may need to look into File > File Info > Raw Data to find the required info for the prefix and namespace fields.


https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 19, 2024 Jan 19, 2024

You could also do this with EXIFTool.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 19, 2024 Jan 19, 2024
quote

You could also do this with EXIFTool.


By @Lumigraphics

 

 

Yes, something like:

 

exiftool -if '$credit =~ /Harvey/' -credit 'mac os/path/to the/folder to search in'

 

exiftool -if "$credit =~ /Harvey/" -credit "C:\win os\path\to the\folder to search in"

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Jan 19, 2024 Jan 19, 2024
LATEST

Thanks much for the example!  This worked for me (I'm on a Mac):  

exiftool -if '$credit =~ /Harvey/' -credit ~/Desktop

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Jan 19, 2024 Jan 19, 2024

Thank you very much for your excellent guidance on implementing/running a script.  Much appreciated!  And it works fine specifying the photoshop Prefix.  

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines