Skip to content

Instantly share code, notes, and snippets.

@natecostello
Created February 28, 2023 18:22
Show Gist options
  • Save natecostello/6bd52f72980ef622b5b561657b56f52c to your computer and use it in GitHub Desktop.
Save natecostello/6bd52f72980ef622b5b561657b56f52c to your computer and use it in GitHub Desktop.
Handy exiftool commands

Fixing the dates on GoPro videos

This will update all MP4 files in a directory with a date in the format "YYYY:MM:DD HH:MM:SS". It was taken from an answer to this question.

exiftool -FileCreateDate="2023:02:27 17:00:00" -FileModifyDate="2023:02:27 17:00:00" -Quicktime:CreateDate="2023:02:27 17:00:00" -api QuickTimeUTC *.MP4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment