Fix Marker Notes Error

Started by Quant007, July 05, 2020, 08:01:59 AM

Previous topic - Next topic

Quant007

Hallo,
When I write EXIF data I get the following error messages:
Warning: [minor] Unrecognized MakerNotes - File
Warning: [minor] Maker notes could not be parsed - File
Warning: [minor] Ignored 4 invalid entries from MakerNotes - File
I know the -m option but is there a way to fix the error permanently?
I have searched the forum and internet for it, but found nothing useful or not recognized it.
Thanks

StarGeek

When you check the output, is there any MakerNotes data at all?  Check with
exiftool -g1 -a -s -MakerNotes:all /path/to/file/

You could try FAQ #20 first, otherwise, maybe just remove the MakerNotes if the data can't be read
exiftool -MakerNotes= /path/to/file/

Though if it's a RAW file, you might want to test it first to see if it can be loaded before applying the command to all the problem files.
* Did you read FAQ #3 and use the command listed there?
* Please use the Code button for exiftool code/output.
 
* Please include your OS, Exiftool version, and type of file you're processing (MP4, JPG, etc).

Quant007

exiftool -g1 -a -s -MakerNotes:all /path/to/file/ gives only the result:
Warning: [minor] Unrecognized MakerNotes - /path/to/file/
I tried all the things form FAQ #20, but I get allways
Warning: [minor] Unrecognized MakerNotes - /path/to/file/

Any ideas?

Phil Harvey

ExifTool doesn't recognize all types of maker notes.  The only way to remove this warning is to delete the maker notes:

exiftool -makernotes:all= FILE

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

Quant007

OK, thanks...
That works for me.