In any of Ziggeo's SDKs,
Can you find out what second of the video the player is at?
I want to know when a viewer gets 30 seconds into the video (for example).
There seem to be methods (events) like play, pause, seek; but it's not obvious if any of them can return a value of where in the video the user is.
I could infer where they are by watching play and pause events, but a seek would go to an unpredictable part of the video
As you said, there are several events that would be of use for such implementation and I will presume that you are going to be using v2 (as that is the recommended way to go with).
The events are:
playing
event will be activated in 3 cases:seek
event fired and then playing will fire as well (since video is now playing again).paused
event will be activated in 2 cases:ended
event.ended
andseek
events fire only when the specific case presents itself (end of video or seek was used respectively).seek
event however has a parameter that is passed into the function - theposition
allowing us to quickly get the exact time the seek operation happened on.The way to get the data (any video data) would be to use
embedding.get();
. Using it as is, will return an entire object of useful details, however for position you would just type 'position'.This is the code of events that would work:
Following is the complete code snippet, however you need to add your own application token and video token. To do that, just replace the "APP_TOKEN" with your application token and "VIDEO_TOKEN" with video token or key.
I have added comments with links within the code, which should hopefully give additional information.