I am doing a project that requires me to know the exact datetime that a particular frame of a video file is occurring. I want to do this by knowing the start datetime of the video and then adding the elapsed time.
The problem is that .mp4 (and EXIF i.e. what exiftool would reveal) reveal their create/start times as ASCII date representations that are only accurate to the nearest second. In essence, I need a program or method that will let me get at the raw start time value of the video which I am assuming is stored as a long somewhere in the data of the file in milliseconds as per ISO.
Update 2: I have moved my update to a comment and will mark this question as "answered" to follow Stack Overflow convention.