i am using exiftool to change meta data in an image. Here is a mwe:
#!/bin/bash
EXIF=exiftool
$EXIF -LensModel="Bubble Teleskop on Marsmission" $1
This is working with many entries, Model, Longitude, Latitude, etc. But now i try to change the "XMP Toolkit" with
$EXIF -xmptoolkit='Paint' $1
or so, but every time i try to change the string, only the original name and version of the exiftool version is inserted.
Some ideas?
Thanks