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'm trying to track a "heatmap" of what parts a video is viewed. I would like to track when a user seeks in a video, where the seek left and where it is going. Currently, I'm able to get the "destination": that's the seconds parameter in (property) onSeek?: ((seconds: number) => void) | undefined.
My current solution is to set a buffer of frames in the past:
This discussion was converted from issue #1774 on April 19, 2024 19:49.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to track a "heatmap" of what parts a video is viewed. I would like to track when a user seeks in a video, where the seek left and where it is going. Currently, I'm able to get the "destination": that's the
seconds
parameter in(property) onSeek?: ((seconds: number) => void) | undefined
.My current solution is to set a buffer of frames in the past:
But, the solution is incredibly hacky.
What is the best way to get source time? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions