The raw files include Make=Insta360
but lack a Model
tag.
Solution:
-
Use
exiftool
to add these tags.exiftool -Make="Insta360" -Model="GO 3" PRO_VID_000.mp4
Solution:
-
Copy EXIF tags from the original file to the new file.
exiftool -TagsFromFile PRO_VID_000.mp4 -all:all exported.mp4
Solution:
-
Add a shortcut for all video date tags (
AllDates
is insufficient).%Image::ExifTool::UserDefined::Shortcuts = ( VideoDates => [ 'Quicktime:CreateDate', 'Quicktime:ModifyDate', 'Quicktime:TrackCreateDate', 'Quicktime:TrackModifyDate', 'Quicktime:MediaCreateDate', 'Quicktime:MediaModifyDate', ], );
-
Use the shortcut to adjust timezone. I'm in UTC-7 time zone, I use
+=7
. Adjust accordingly.exiftool -AllDates+=7 -VideoDates+=7 PRO_VID_000.mp4
References: