Hi everyone.
I'm really confused here. It's my first test in my computer and i'm trying to modify all dates of a sample mov file.
I execute the command (exiftool "-AllDates=1986:11:05 12:00:00" c:\vid.mov) and receive the message: file updated.
But when i go to the file it has the original date.
What i'm doing wrong? :o
First of all, you're looking at the file modification date, not dates in the metadata (which is what you change with your command).
Besides, -AllDates only changes a couple of the common date fields. If you want to change other tags, you have to additionally specify them. Be warned too though that write support for video is a bit limited and depends of the actual video file format.
To check if exiftool did anything to your file run e.g., exiftool -AllDates, or just exiftool, on the file.
You are right!
I thought the AllDates would change all of the, but after reviewing it more closely I noticed it just changes some. I used the other tags and now it works.
Thanks!!!
If you really want to try to set all date/time tags, you can write Time:All, but this is almost never what is wanted.
- Phil
Thanks Phil!!
I'm testing it right now!! :D