has solution about "could not connect to application #error 2028"?
I am just testing JW player.
actually, I want my site to play Stream(recording from Gocoder) from wowza.
So, I made a code like this.
but I got a specific error (could not connect to application #error 2028)
==============================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JW Player</title>
<script src="jwplayer.js"></script>
<script>jwplayer.key = "f5ee/zXM7QOdSGBP7IZAS7t1Me0AMKVkVN4P/g==";</script>
</head>
<body>
<div id="player"></div>
<script>
jwplayer("player").setup({
'provider' : 'rtmp',
'streamer' : 'rtmp://10.177.170.54:1935/live',
'file' : 'myStream',
primary : 'flash',
/* autostart: 'true', */
repeat: 'always',
height: '360',
width: '640',
rtmp: {
subscribe: true
}
});
</script>
</body>
</html>
=============================================
any ideas? plz let me know.