You need to do this programmatically so ensure you have your playlist with you.
In the head tag of page, put this two script lines
I have used the latest current version now, you can specify your preferred version.
In summary you should have a setup like this or similar
Lastly, locally host the page and open it in a new browser tab to watch your stream using JW Player.
In the head tag of page, put this two script lines
JavaScript:
<script src="https://ssl.p.jwpcdn.com/player/v/8.38.10/jwplayer.js"></script>
<script>jwplayer.key="QybHxeEatECB7VWGt/y7fw69lOha2N4x3Es4kNK1RhDAmYzB"</script>
I have used the latest current version now, you can specify your preferred version.
In summary you should have a setup like this or similar
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JW Player BET East Stream Test</title>
<script src="https://ssl.p.jwpcdn.com/player/v/8.38.10/jwplayer.js"></script>
<script>jwplayer.key="QybHxeEatECB7VWGt/y7fw69lOha2N4x3Es4kNK1RhDAmYzB"</script>
</head>
<body>
<h1>JW Player BET East Stream Test</h1>
<h2>BET East Stream</h2>
<div class="player-container">
<div id="player-bet"></div>
</div>
<script>
jwplayer("player-bet").setup({
file: "PUT IN YOUR M3U8 LINK HERE",
width: "100%",
aspectratio: "16:9",
autostart: true,
mute: false,
controls: true,
pip: true,
pipIcon: "enabled"
});
</script>
</body>
</html>
Lastly, locally host the page and open it in a new browser tab to watch your stream using JW Player.