I'm writing a simple C# app to organize my home photos & videos (they're a mess), and I'm using the original date to organize them.
I know how to pull the date taken from photo files using System.Drawing.Imaging.PropertyItem
.
How can I do something similar w/ video files, or is this not trivial/possible with C#? The best I have is the FileInfo.CreationTime
, but as we all know this isn't always accurate.
As a side note, I'm not concerned with the time, just the date, so the timecode at any point during the video would be sufficient.