
SMIL JWPlayer
Smil = test.smil
<smil>
<head></head>
<body>
<switch>
<video src="The Way I Love You_240p.flv" system-bitrate="200000" />
<video src="The Way I Love You_360p.flv" system-bitrate="350000" />
<video src="The Way I Love You_480p.flv" system-bitrate="480000" />
</switch>
</body>
player.html
<html>
<head>
<script type="text/javascript" src="jwplayer-7.11.2/jwplayer.js"></script>
<script type="text/javascript">jwplayer.key="mg9zHGtZmszFHqc4f1fTCmb6RPIbw2WnFpbJdw==";</script>
</head>
<body>
<div id="video">Loading the player...</div>
<script type="text/javascript">
var playerInstance = jwplayer("video");
playerInstance.setup({
file: "test.smil",
title: "Test"
});
</script>
</body>
</html>
I want to test but only Error Loading Player : No playable sources found message show.
Videos store on root path.
Thank you.