-
-
Save Kambaa/4eb5869d2fb85d33f2e1b5de1869fa6e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>IVS Playback</title> | |
<script src="https://player.live-video.net/1.14.0/amazon-ivs-player.min.js"></script> | |
<script> | |
document.addEventListener('DOMContentLoaded', () => { | |
// set stream url | |
const streamUrl = '[Playback URL]'; | |
// init and play | |
const ivsPlayer = IVSPlayer.create(); | |
ivsPlayer.attachHTMLVideoElement(document.getElementById('video-player')); | |
ivsPlayer.load(streamUrl); | |
ivsPlayer.play(); | |
}); | |
</script> | |
</head> | |
<body> | |
<video id="video-player" style="height: 450px; width: 800px;" controls autoplay muted></video> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment