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

JWPlayer - Does not recognize license key for embed


Have WOWZA running and can play output stream in VLC. All attempts to embed in IE 11, Firefox, Google Chrome result in"Error setting up player:Missing license key"

I only have one license key for testing with the entry level version.

My embed code is

<!doctype html>

<html>
<head>
<title>
Vernor Materials and Equipment JVPlayer demo
</title>
<script type="text/javascript" >
src="http://www.vernor.com/jwplayer/jwplayer.js"
</script>

<script type="text/javascript">
jwplayer.key="Rn4P0qKuR3shDSWDa0kyaokFUfyuZ3vwkqdBBA=="
</script>


</head>
<body>
<table border="1">
<tr class="text10Header">
<td colspan="4" width="640" align="center">
Vernor Materials and Equipment Video Display Test
</td>
</tr>
<tr>
<td colspan="4" align="center">
<div id="player"></div>
</td>
</tr>
</table>
<script>
jwplayer("player").setup({
sources: [{
file: "rtmp://192.168.2.174:1935/live/Dispatch.stream"
}],
height: 360,
width: 640
});
</script>



</body>
</html>

2 Community Answers

t...

User  
0 rated :

Got it now so no error, just nothing

Donni

JW Player Support Agent  
0 rated :

Try this and let me know if it helps:

<!DOCTYPE html>
<head>
<script src="your locally hosted jwplayer.js"></script>
<script>jwplayer.key="your key here";</script>

</head> <body> <div id="thePlayer">Now Loading the Player…</div> <script type="text/javascript"> var playerInstance = jwplayer("thePlayer"); playerInstance.setup({ file: "your file or stream here", }); </script></body>

This question has received the maximum number of answers.