How can I remove the EXIF tags/metadata from several images at once?

7

1

I have a 6,000+ photos. I want to remove a the tags from these photos. I know how to do it one photo at a time. But wondering, what is the way to do mulitple files at a time? Thanks

More Than Five

Posted 2013-02-24T00:59:20.413

Reputation: 407

Answers

8

You can do this easily with ExifTool:

exiftool -all= -overwrite_original -r .

This command will remove all supported tags from all supported file types in the current directory and all sub-directories. Be careful with this (remove -overwrite_original if you're not sure) and read the documentation first.

Karan

Posted 2013-02-24T00:59:20.413

Reputation: 51 857

1

Exif Eraser could do the job easily and is available with graphical user interface.

mwaseema

Posted 2013-02-24T00:59:20.413

Reputation: 11

0

You could use a program like ACDSee, which allows bulk operations.

I think Windows Live Photo Gallery (free) can do the same thing.

paradroid

Posted 2013-02-24T00:59:20.413

Reputation: 20 970