简体   繁体   中英

Save geotagged images to new directory using exiftool

I am trying to use exiftool in command line.

By default exiftool saves geotagged image in the same directory where the original image is. Can I change this behavior and change the directory of geotagged image to new directory.

You want to look at the -o option . The second example under Writing Examples shows this option. In your case, it would be something like:
exiftool -GPSLatitude=0.000 -GPSLongitude=0.000 -GPSLatitudeRef=S -GPSLongitudeRef=W -o /path/to/New/GPSTaggedFiles/ /Source/Path/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM