
HLS VS HTML5 JW Player 6.9 Release Candidate
Hello. I received JW Player 6.9 Release Candidate. I installed it. But I get FLASH player still go on by default instead of HTML5. How do I make HTML5 to start instead of FLASH?
Page with a player on my site is this one here:
http://www.emoe.tv/google-tv/player.php?id=1596&type=recorded&alias=&date=1596&offset=420
Code is as follows:
<script type="text/javascript">
jwplayer("player6QVf7Mc6igor").setup({
autostart: true,
height: "100%",
width: "100%",
controls: false,
quality: true,
volume: 100,
stretching: "uniform",
playlist: [
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-9.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-10.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-11.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-12.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-13.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-14.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-15.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-16.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-17.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-18.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-19.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-20.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-21.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-22.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-22-23.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-23-0.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-23-1.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-23-2.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-23-3.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-23-4.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-23-5.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-23-6.mp4/playlist.m3u8"},
{file: "http://64.62.164.140:1935/ortondemand/_definst_/mp4:ort/ort.stream-2014-6-23-7.mp4/playlist.m3u8"},
]
});
var executed = false;
jwplayer('player6QVf7Mc6igor').onPlay(function() {
if (!executed) {
executed = true;
var date = new Date();
var minutes = date.getMinutes();
var shift = minutes*60;
jwplayer('player6QVf7Mc6igor').seek(shift);
} });
</script>