KonradIT / goprowifihack

Unofficial GoPro WiFi API Documentation - HTTP GET requests for commands, status, livestreaming and media query.
Apache License 2.0
2.12k stars 334 forks source link

Media created and modified numbers? #261

Open jacobstasiewicz opened 3 years ago

jacobstasiewicz commented 3 years ago

Problem: I am trying to record the time of creation for each file in the Gopro, using http requests I can see that the last video on the camera was recorded on 24-Sep-2021 13:24, but in the gpMedialist the "cre" and "mod" are both 1632489844. What is this number, I assumed it would be the time and date of the creation of the video.

Details:

MiniGod commented 2 years ago

1632489844 is a "unix timestamp". It's very common in software to use unix timestamps to represent time. They represent the number of seconds since Jan 1st 1970 UTC.

You can find converters online if you search for "unix timestamp".

1632489844 is 24-Sep-2021 13:24:04 UTC