ExifTool Forum

ExifTool => Newbies => Topic started by: nt11062 on October 26, 2023, 07:17:14 AM

Title: how to add video model metadata?
Post by: nt11062 on October 26, 2023, 07:17:14 AM
I tried to
exiftool -Model="Galaxy S6" *.mp4
but fail..

what should i do?
Title: Re: how to add video model metadata?
Post by: Phil Harvey on October 26, 2023, 07:32:43 AM
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
Title: Re: how to add video model metadata?
Post by: StarGeek on October 26, 2023, 10:48:03 AM
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?
Title: Re: how to add video model metadata?
Post by: wywh on October 26, 2023, 04:24:31 PM
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