Getting tags of only one file

Started by evilaro, April 27, 2011, 06:41:40 AM

Previous topic - Next topic

evilaro


Hi:

I use
     
     exiftool.exe -list -r -v > result.txt

To get the tag names... but I get ALL the tag names

I would like to get only the tags of a specific file.

I try this , but it does the same

     FILE="E:\IM\RA001\DVD 101\OLYMPUS_900Z\223_Mali_Burkina\P1010052.JPG"       
     exiftool.exe -list -r -v "&FILE" > result.txt

Is there a way to get ONLY the tags that a specific file has?


Thanks

Emilio
www.evilfoto.eu
*************

Phil Harvey

...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

evilaro

Phil:

Thanks...

That proves I am loosing memory .. and ... I really have this need ;)

Basically what I want to optain (probably you have already answered this question, but I do not find it)
is the words to use to obtain the basic parameters in EXIF.
There are so many variations that really is difficult to know which one to use
 
for example :

'File Name'
'Date/Time Original'
'Aperture'
.
.

to put it here


'exiftool.exe -r -filename -DateTimeOriginal -aperture -ISO -Make -Model -Flash -FocalLength -ExposureTime  "&DIR"  > resultado.csv'


Is there a one to one list?

No hurry with the answer... enjoy well deserved holidays ;)

Emilio


Quote from: Phil Harvey on April 27, 2011, 08:22:06 PM
See your other post
www.evilfoto.eu
*************

Phil Harvey

It sounds like you are asking a different question now.

There is a -common shortcut to extract some common tags, but this probably isn't exactly what you want.

However, you can create a user-defined shortcut tag to extract whatever tags you like.  You say that it is difficult for you to know which ones to use, but it is more difficult for me to know which ones you want to use.

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

evilaro

Phil:

Thanks... Yes it is real hard to know which ones I want to use... but that part
is solved, but my users can ask ANY thing in this world...

Anyway, I feel I got the idea, when I get it to work I will come back

Thanks

Emilio



Quote from: Phil Harvey on April 29, 2011, 06:38:34 AM
It sounds like you are asking a different question now.

There is a -common shortcut to extract some common tags, but this probably isn't exactly what you want.

However, you can create a user-defined shortcut tag to extract whatever tags you like.  You say that it is difficult for you to know which ones to use, but it is more difficult for me to know which ones you want to use.

- Phil
www.evilfoto.eu
*************