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.