how to add video model metadata?

Started by nt11062, October 26, 2023, 07:17:14 AM

Previous topic - Next topic

nt11062

I tried to
exiftool -Model="Galaxy S6" *.mp4
but fail..

what should i do?

Phil Harvey

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
...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 ($).

StarGeek

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?
* 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).

wywh

#3
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