-
Notifications
You must be signed in to change notification settings - Fork 117
Open
Description
Hello, I'm using the following code to embed metadata to JPEGs:
def embed_metadata(self):
with ExifTool(executable_=os.environ["EXIFTOOL"]) as et:
for param in self.__metadata:
param = param.encode(encoding="utf-8")
dest = os.path.join(os.environ["JPG"], self.__jpg).encode(
encoding="utf-8"
)
et.execute(param, dest)
It runs fine, but nothing really happens. No tags get embedded and no jpg_original files are created, as it happened before
with an almost identical function. I have checked the tags content and the destination is built correctly. What am I missing here?
Metadata
Metadata
Assignees
Labels
No labels