
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>