Hi guys! I’m embed a twitch stream in my google site and wix too. But I have a problem, the fullscreen button don’t work, and the stream get started muted. Bellow is my code, and the website for reference.
Thanks in advance!
<div id="twitch-embed"></div>
<script src="https://embed.twitch.tv/embed/v1.js"></script>
<script type="text/javascript">
var embed = new Twitch.Embed("twitch-embed", {
width: "100%",
height: "100%",
channel: "caioms001",
layout: "video",
allowfullscreen: true,
parent: ['sites.google.com', 'www.gstatic.com', 'cglightfiles.com.br', 'www.cglightfiles.com.br', window.location.host]
});
embed.addEventListener(Twitch.Embed.VIDEO_READY, () => {
var player = embed.getPlayer();
player.setVolume(0.2);
player.setMuted(false);
player.setQuality("chunked");
});
</script>
Website: Webiste!