Thanks for the sample. I looked at it and discovered that, unfortunately, it was written with no timestamp data.
In the moov
atom, there is an mvhd
atom. This has both a creation and modification timestamp. These are both 0, which is why my tool from the other question reports January 1, 1904 for each (start of the QuickTime epoch). Digging deeper into the moov
atom, there are 2 trak
atoms (1 for video and 1 for audio). Both of these have tkhd
atoms which also contain creation and modification timestamps... which, as you might have guessed, are also 0 for this sample.
There are a few different metadata formats you find with these types of files. Regrettably, I don't see any sign of these or any other custom metadata in the short moov
atom.
You indicated that the phone is able to display the media in the order in which is was created. It must be using timestamp data that is not stored in this file (e.g., using timestamps as stored in the phone's filesystem). You might need to figure out how to access that data in order to get the true creation timestamps since this software chooses not to write them into the files themselves.