
Embedded video player and token signing
Hello, I have created a small HTML page and want to use an embedded player to play a movie that is secured via token signing. I keep getting a "no playable sources found" error. Am I forgetting something or doing something wrong? My html looks as below and I have my security set up as "Secure video downloads and player embeds":
<!DOCTYPE html>
<html>
<head>
<script src="http://jwpsrv.com/library/<myaccounttoken>.js"></script>
</head>
<body>
<h1>Hello</h1>
<div id="myElement">Loading the player...</div>
<script type="text/javascript">
var playerInstance = jwplayer("myElement");
playerInstance.setup({
file: "http://content.jwplatform.com/previews/K9N7xZg8-LrMPw2Ku?exp=1435047932&sig=86e6596928fe3ebd5a46a5ffc7d95725",
width: 640,
height: 360
});
</script>
</body>
</html>