Hello, I was wondering if there is a way to tag the earliest date associated with an MP4 video in the Title field...
What I want to do is essentially, renaming MP4 files based on the following criteria...
So I'm guessing the easiest way is to tag the TITLE field using Format Value with the format string as follows...
That does not look easy esp. as you have all the data already there. You can rename the file directy with the format string that you use to modify TITLE.
To reformat the %_file_create_datetime% you can use a regular expression: $regexp(%_file_create_datetime%,'(\d\d)/(\d\d)/(\d\d\d\d) (.*)',$3-$1-$2T$4)
Please not that not all characters are valid for filenames, e.g. the colon isn't and probably the slash isn't for a MAC.
Use that regular expression instead of the plain field name.