On Wed, 2018-03-21 at 09:08 -0700, Γιώργος Λαδιάς wrote:
> Thank you i will try it.
>
> Foρ the timestamp any suggestion plz?
The event timestamps in the recording are in milliseconds using the
system "monotonic clock" and so are not realtime. To convert to
realtime, do this:
Find the first recording event in the file:
<event timestamp="177844875" module="PRESENTATION" eventname="SharePresentationEvent">
Then find the event you're interested in:
<event timestamp="178040606" module="WHITEBOARD" eventname="AddShapeEvent">
Take the two timestamps, and subtract:
178040606 - 177844875 = 195731
And take the timestamp from the recording ID:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-495727271951
and add:
495727271951 + 195731 = 495727467682
This is now a time in unix epoch time in milliseconds.
--
Calvin Walton <
calvin...@kepstin.ca>