You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently generating timestamps from a vrs file using two methods:
Using the vrs CLI's command vrs extract-images with no special arguments whereby the jpegs have the timestamps.
Using the aria-data-tool python bindings to loop through the data records to retrieve the timestamps.
while True:
data_record = player.getDataRecord()
yield data_record.captureTimestampNs
if not self.vrs_provider.tryFetchNextData(stream_id, data_record.captureTimestampNs):
break
Just curious as to why these two methods yield timestamps that are consistently 1 ms (0.001 seconds) different (ie. method 1 returns timestamps all ending in the digit 7 while method 2 returns timestamps all ending in the digit 9)
The text was updated successfully, but these errors were encountered:
Hi Aria team,
I am currently generating timestamps from a vrs file using two methods:
vrs extract-images
with no special arguments whereby the jpegs have the timestamps.Just curious as to why these two methods yield timestamps that are consistently 1 ms (0.001 seconds) different (ie. method 1 returns timestamps all ending in the digit 7 while method 2 returns timestamps all ending in the digit 9)
The text was updated successfully, but these errors were encountered: