OT Web Video jkerry wrote on 1/27/2015, 7:53 PM I have someone who wants me to make a video to post on their website. But he wants the video to end and then show a still graphic where the video does not repeat. Does anyone happen to know how to go about doing this? Tks, Jeff Back to post
Comments musicvid10 wrote on 1/27/2015, 8:46 PM JWPlayer. Put a still at the end for X seconds. I don't think JW loops by default. Kit wrote on 1/28/2015, 5:52 PM You can use javascript on the webpage to pause the player at the end of the video. This certainly works for JWplayer: <script type="text/javascript"> jwplayer('ObjectName').onTime(function(object) { if(object.position > object.duration - 1) {this.pause(); } }); </script> jkerry wrote on 1/29/2015, 10:07 AM Thanks for the advise. I didn't even think of looking at our jplayer and found last night that it works this way. 1