0

I'm looking for an application or command line tool that can batch edit file metadata. I have some audio files recorded using a recorder that was off by 1 hour, and I want to modify the creation date to the correct time.

Crowder
  • 3,944
  • 6
  • 22
  • 40
  • This has command line, but I'm not sure how you'd batch "-1 hour" - http://apple.stackexchange.com/questions/99536/changing-creation-date-of-a-file – Tetsujin Feb 04 '16 at 09:46

1 Answers1

1

You can use "touch -mt YYYYMMDDhhmm" followed by your file name/path, of course replacing YYYYMMDDhhmm with your desired date. I recommend typing "man touch" into terminal to look at the manual and different command options there.

user187678
  • 11
  • 1