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:
Insert title here
jwplayer.key="mykey_downloadfrom_dashboard_tool";
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
});
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...
↧