Apologies in advance if this sounds like a novice question, but I'm curious about the exiftool command used by exifcleaner to remove the HandlerVendorID parameter from MP4 files. When attempting
exiftool input.mp4 -handlervendorid:all=
I receive a warning stating
Warning: Not a deletable group: handlervendorid
Could someone provide clarification on this issue?
It seems HandlerVendorID is forced to .mp4 [edit: as far as ffmpeg output, just found a .mp4 without it]. But ffmpeg can rewrap .mov to .mov without it. Why do you want to remove it?
exiftool -a -G1 -s -HandlerVendorID= input.mov
Warning: Sorry, HandlerVendorID is not writable
Nothing to do.
ffmpeg -i input.mov -c copy output.mov
ffmpeg -i output.mov -c copy output.mp4
exiftool -a -G1 -s -HandlerVendorID .
======== ./output.mov
======== ./input.mov
[Track1] HandlerVendorID : Apple
[Track1] HandlerVendorID : Apple
[Track2] HandlerVendorID : Apple
[Track2] HandlerVendorID : Apple
[Track3] HandlerVendorID : Apple
[Track3] HandlerVendorID : Apple
[Track4] HandlerVendorID : Apple
[Track4] HandlerVendorID : Apple
[Track5] HandlerVendorID : Apple
[Track5] HandlerVendorID : Apple
======== ./output.mp4
[QuickTime] HandlerVendorID : Apple
https://exiftool.org/TagNames/QuickTime.html (https://exiftool.org/TagNames/QuickTime.html)
- Matti
Just cause i have no sympathy for Apple ;D
Optimizing useless metadata, im writing a python script just for fun
The solution doesn't really do the trick cause it doesn't reduce the video's metadata, it add VideoHandelr: FFMPEG
One thing about your original command. In tag names, anything before the colon is the group name, with the actual tag name coming afterwards. So when you write handlervendorid:all, you are telling exiftool to look for a group named "handlervendorid", which doesn't exist.
If HandlerVendorID was deletable (which exiftool cannot do, see the Quicktime tags page (https://exiftool.org/TagNames/QuickTime.html#Handler)), you would simply use
-HandlerVendorID=
HandlerVendorID is a necessary part of the handler structure. You can get rid of the Apple footprints, but you don't save any space by doing this.
- Phil