Skip to content

Instantly share code, notes, and snippets.

@freaktechnik
Created October 8, 2016 22:09
Show Gist options
  • Select an option

  • Save freaktechnik/dcf61036ea2dbef2eb75abef3c7dde68 to your computer and use it in GitHub Desktop.

Select an option

Save freaktechnik/dcf61036ea2dbef2eb75abef3c7dde68 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
</head>
<body>
<script src="https://player.twitch.tv/js/embed/v1.js"></script>
<div id="player"></div>
<script type="text/javascript">
var options = {
width: 600,
height: 400,
channel: "miky193"
};
var player = new Twitch.Player("player", options);
player.setVolume(0.5);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment