name of file in Title TAG

Started by REDFENIX, November 23, 2012, 05:09:29 PM

Previous topic - Next topic

REDFENIX

hi,

i need help.

I need a command for exiftool to put a name of pdf file in the title TAG...

like : title="original_name.pfd by exiftool"

thanks


REDFENIX

problem solve!!!

command line is : exiftool"-Title<myname" *.pdf

and code of .exiftool_config is:



%Image::ExifTool::UserDefined = (
    'Image::ExifTool::Composite' => {
        MyName => {
            Require => 'FileName',
            # remove "_code.pdf" from end of FileName
            ValueConv => '$val =~ s/_code\.pdf//; $val',
        },
    },
);


thanks

Phil Harvey

#2
Since you want the whole file name in the title, you don't need the config file and you can use this command:

exiftool "-Title<FileName" *.pdf

- Phil

Edit: Added missing space in command after "exiftool"
...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 ($).

REDFENIX

hi, thanks for help.

but i have one problem ... i need the file name and more text.

example:

Title = name of file + "by exiftool"


Phil Harvey

You do that like this:

exiftool "-Title<$FileName by exiftool" *.pdf

But if you are on Mac or Linux you must use single quotes instead of double.

- 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 ($).

REDFENIX

thanks Phil...

exiftool is the best...