I'm trying to determine the upload date—or at least the file creation date—of a video embedded on a website. The video isn't directly linked or available as a normal download, and it opens only after clicking an icon. Is there any metadata, browser tool, or other method that could reveal when it was uploaded?
3 Answers
Try opening your browser’s developer tools and watching the Network tab while launching the video. Look for requests ending in .mp4, .webm, an HLS playlist such as .m3u8, or a video API response. That may reveal the actual media URL, which you can then inspect for metadata. Keep in mind that the file’s creation date may be missing or may reflect when it was copied to the current server, not when it was originally uploaded.
A download utility might recognize the embedded player, but it won’t work if the site uses a custom player, hides the media URL, or serves the video through protected streaming. In those cases, the Network tab is usually more useful than trying to download the page itself.
There may not be a reliable public upload date. You can check the page’s source, embedded JSON, HTTP headers, player configuration, or media metadata for fields such as published, created, modified, or uploadTime. If none of those exist, the date generally can’t be recovered with certainty. An archived copy of the page could help, but only if it was captured near the time the video appeared.

That makes sense. I’ll check the network requests instead of looking only at the visible page source.