sylikc / pyexiftool

PyExifTool (active PyPI project) - A Python library to communicate with an instance of Phil Harvey's ExifTool command-line application. Runs one process with special -stay_open flag, and pipes data to/from. Much more efficient than running a subprocess for each command!
Other
148 stars 19 forks source link

why XMP tag not add to IPTC Please donnot ignore? #72

Closed faridelya closed 1 year ago

faridelya commented 1 year ago

As I am using this code and the tag name is from XMP but i have mentioned IPTC

from exiftool import ExifTool
with ExifTool() as et:
    print(et.execute(*["-IPTC:Subject=hi"] + ["skyblue.png"]))

Thanks please write your precious answer

sylikc commented 1 year ago

@faridelya have you tried this on the command line without using python? this would better be asked as an upstream question on the exiftool forums. Issues here are for the python interface to the exiftool utility.