I tried to
exiftool -Model="Galaxy S6" *.mp4
but fail..
what should i do?
If you don't get this:
> exiftool -Model="Galaxy S6" a.mp4
1 image files updated
> exiftool -Model -a -G1 a.mp4
[UserData] Model : Galaxy S6
[XMP-tiff] Camera Model Name : Galaxy S6
... then update to a more recent version of ExifTool.
- Phil
If Phil's answer doesn't help, then we need more information.
How does it fail? What is the exact output from that command? Are you checking to see if it works with exiftool or some other program?
If the target platform is Apple I'd use something like below, because UserData or ItemList tags are not so well supported:
exiftool -overwrite_original -Keys:Model='iPhone SE (1st generation)' a.mp4
- Matti