javascript - jwplayer 360p video takes to load -


i have problem plugin jwplayer has 2 medium 240p , 360p on localhost performs normally. when sending hosting takes long load video in 360p @ 240p loads faster, in fact think he's waiting load whole video play.

my code :

<script type="text/javascript">     jwplayer("container").setup({     height: "97%",     width: "100%",     primary: "flash",     allowscriptaccess: "always",     autostart:true,    playlist: [{       image: "uploads/snapshots/374f9c59b58f880c5e68762bde43318a.jpg",     sources: [{       file: "uploads/374f9c59b58f880c5e68762bde43318a.mp4",       label: "360p"     },{       file: "uploads/374f9c59b58f880c5e68762bde43318a.flv",       label: "240p"     }]   }],   }); </script> 


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -