I'm trying to determine the upload date—or at least the file's creation date—for a video embedded on a website. The video isn't directly linked or downloadable in an obvious way; it only appears after clicking an icon that opens the player. Is there metadata, page information, or another method that could reveal when it was uploaded?
3 Answers
You may be able to see a file creation date or other metadata once you locate the actual media file, but that is usually only the date it was created or processed on that server. Treat it as an estimate rather than definitive proof of the original upload date.
It depends on how the player is implemented. You can inspect the page source or use your browser’s developer tools and look under the Network tab while opening the video. That may reveal the actual media URL, an API request, or the hosting service. If it comes from a video platform, that platform’s metadata may include an upload date. HTTP headers or the file’s metadata might show a creation or modification date, but those timestamps can be missing or changed and don’t necessarily prove when the video was uploaded.
A download tool may work if you can identify the underlying video URL, but it generally cannot help when the player hides the source behind a script or API. Checking an archived copy of the page can also provide clues, although it won’t help if the page was saved after the video was added or hasn’t been archived recently.

The video only appears after clicking an icon, so I’ll try watching the network requests while it opens rather than relying on the visible page source.