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

Embedding Cloud Player. Nothing showing up


I was following Option 2 on https://support.jwplayer.com/customer/en/portal/articles/1406723-basic-video-embed.

So I added

<script src="http://content.jwplatform.com/libraries/7sss329r.js"></script>

to <head>

and

<div id="testPlayer" align="center">Loading the player...</div>
<script type="text/javascript">
var playerInstance = jwplayer("testPlayer");
playerInstance.setup({
file: 'http://52.91.105.109:1935/live/testStream2/playlist.m3u8?DVR'
});
</script>

to <body>


"Loading the player..." shows up, but the video never does.
The url: https://ballertest.herokuapp.com/streams/525.

3 Community Answers

Todd

JW Player Support Agent  
0 rated :

Your web site is hosted as HTTPS, but you are requesting the HTTP version of your player library, so the web browsers will not allow you to load HTTP content from an HTTPS site. You need to change http://content.jwplatform.com/libraries/7sss329r.js to https://content.jwplatform.com/libraries/7sss329r.js with the s.

Hope this helps,
Todd

aaron

User  
0 rated :

Thanks so much!

Todd

JW Player Support Agent  
0 rated :

You’re welcome. I will mark this support case as closed, but certainly contact us again if you have any other support questions or concerns.

This question has received the maximum number of answers.