Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

REveal Div at specific showing of specific slide in video


I would like to reveal a div on my page at a specific slide in our video. We have tried using the specific time but that is not always accurate. It sometimes shows 30 seconds later in the video than we want or 30 seconds earlier. We want to display when a specific frame of the video is displayed is this possible if so how?

6 Community Answers

Andrew

JW Player Support Agent  
1 rated :

The player does not have the capacity for frame-specific triggers. This would be based on time within the media file. However, if you’re setting this on a specific second, it shouldn’t fire 30 seconds later. Do you happen to have a link to an example of where you’re setting this up?

jschuler

User  
1 rated :

http://www.turnupyourmetabolism.com/daily-boost/?lp=n
Reveal of the page is supposed to occur at 23 and 14 seconds or this frame in the image. But the image in the movie that we want the reveal to happen at never happens at the same time on different machines. We have a large QA group and automation testing and they can never replicate the reveal to occur within a close range of the reveal time we want.

jschuler

User  
1 rated :

I am thinking of trying something similar to this but coded for the JWPLAYER. This is coded for just an HTML 5 video player.

<script>
var passed = false;
document.querySelector("video").addEventListener("timeupdate", function() {
if(!shown && this.currentTime > <%=REVEALDELAY%>) {
console.log("mark passed");
passed = true;
document.getElementById('delay').style.display = 'block';
document.getElementById('disclaimers').style.display = 'block';
document.getElementById('references').style.display = 'block';
document.getElementById('whitewrap').style.display = 'block';
document.cookie = "visit=yes";
}
});
</script>

jschuler

User  
0 rated :

Hi Can I use the code above with JWPlayer? Would that work?

Randy

JW Player Support Agent  
0 rated :

Hello,

I would say it may be worth giving it a try as custom codes can vary. Feel free to sign up for a free player and try the video player there. This way you will know if it meets your needs. http://www.jwplayer.com/pricing/ .

Kindly,

Randy Le’Moine, Web Support Engineer, JW Player
www.jwplayer.com

jschuler

User  
0 rated :

We already have a full player and membership to JW Player. We have been using your product for years. We are trying to find a more accurate solution for revealing a portion of our page when a specific slide appears in the video. Any assistance you could provide would be most appreciated. Otherwise we may have to look at other video players that can offer a more accurate way of completing this task.

This question has received the maximum number of answers.