I'm receiving from my system a set of fit files and a set of video files.
Obviously in each fit file, there might be information about several video files that were recorded on the same session.
I want to be able to match each video information from a fit file, to its matching video file.
The information I have about a video from the fit file is:
- It's camera_file_uuid which is similar to these values:
VIRBactioncamera360_Video_3840_2160_29.9700_3954319023_358e0c72_1_165_2018-06-21-10-37-41
VIRBactioncamera360_Video_3840_2160_29.9700_3954319023_35f0ffb3_1_243_2018-09-04-12-00-40
VIRBactioncamera360_Video_3840_2160_29.9700_3264888901_35fbb7e6_1_13_2018-09-12-15-10-48
I couldn't find documentation of this format, but could manually understand this (Which might be incorrect):
["prefix", "video_type", "width", "height", "frame_rate", "serial", "video_start_time", "unknown", "video_id", "date_camera_started"]
Also, I have an estimate of the length of the video from "video_end" and "video_start" from the "camera_event_type" in the "camera_event" messages.
From the video files, all I have is its name which is similar to:
V2382266.MP4
V1512169.MP4
V2312259.MP4
And I can also extract its length.
I couldn't find any useful info using exiftool
I need some accurate way to match between the video and its information from the fit file.
Preferably something that will also allow me to take a batch of video files from different cameras and a batch of fit files from these cameras - and match the information accurately
Specifically, I'm using Garmin Virb 360.
Thanks