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

flash plugin fail to load on chrome


i am trying to develop a live streaming web project. when i start local video on my PC, my cdn server shows the video properly, but chrome on my pc doesn't.

at first chrome can show the image that i defined in html file, then about 2 or 3 second later, chrome shows information "flash plugin fail to load".

this is my html page:
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="D:\workspace\LiveVideo\src\main\webapp\plugin\jwplayer\jwplayer.js"></script>
<script>jwplayer.key="mykey_downloadfrom_dashboard_tool";</script>
</head>
<body>
<div id="jw"></div>

<script type="text/javascript">
var playerInstance = jwplayer("jw");
playerInstance.setup({
file: "rtmp://pili-live-rtmp.live.hongzk.com/livehzk/test1",
image: "C://Users//Pei//Desktop//testlive.jpg",
height: 360,
width: 640
});
</script>
</body>
</html>

the information from chrome debug mode is listed below:
name status type
jwplayer.html finished document
jwplayer.js finished script
jwpsrv.js 200 script
testlive.jpg finished jpeg
jw-icons.woff 200 font
jwplayer.flash.swf finished x-shockwave-flash
ping.gif?h=(long string) 200 gif

from chrome debug mode, i think that jwplayer.flash.swf is invoked properly, and i have installed adobe flash player 22.
please help me...

2 Community Answers

Alex

JW Player Support Agent  
0 rated :

Hi there,

Is rtmp://pili-live-rtmp.live.hongzk.com/livehzk/test1 accessible outside of your local network? It does not seem to be working at all for me.

Please let me know. Thanks!

Pei

User  
0 rated :

Hi Alex, I am sorry, it was my cdn server problem, my code works fine after cdn server figured out its problem.:)

This question has received the maximum number of answers.