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

Poster Frame


Hello

I was wondering if someone can help me.

My client would like a poster before the video plays. I have tried the java script below, with my image to no avil.

What do i need to do?

player = jwplayer("videoplayer-embed").setup({
"flashplayer": "js/player.swf",
"image":https://daks2k3a4ib2z.cloudfront.net/573c46d023185ae148489a6a/584a7f1ca2cecbb5440a6848_NewWhyChooseusbackground.png "
"width": 600,
"height": 748,
"playlist":[
{file:'url', title:"", caption:"",
},
]
});

</script>

Please help!

K

1 Community Answers

George

JW Player Support Agent  
0 rated :

This should do the trick:
<div id="container">Loading Video…</div>
<script>
var playerone = jwplayer(“container”);
playerone.setup({
playlist:[{
title:“Hackerman”,
mediaid:“Y5UQq0fG”,
image:“http://content.jwplatform.com/thumbs/Y5UQq0fG-720.jpg”,
file:“http://content.jwplatform.com/manifests/Y5UQq0fG.m3u8”
}],
width:“80%”,
aspectratio:“16:9”,
});

</script>

This question has received the maximum number of answers.