The great big "I'm using WIX/SomeWebsiteMaking Tool and I don't know how to fix my embed" thread

Welcome and pardon me moving your posts between threads :slight_smile:

1 Like

ADMIN: Duplicate post of Some problems with the embedded player and quality auto detection

Removed for thread clarity

No worries man, I appreciate your help. I imagine it’s like playing whack-a-mole trying to answer all the questions after a big update like this.

I left your existing post where it is as it’s a seperate issue. And I don’t have an answer. Your post didn’t need cross posting here

This thread deals with getting Embeds functional, your embed is functional.

@BarryCarlyon This thread deals with getting Embeds functional, your embed is functional.

It basically works, but it does not work correctly if the viewers first have to make the quality settings by hand because they believe that the stream really runs in 160p. Around 90% will not do it at all and will leave the stream again before the manual correction.

You’ll need to await a response on your main thread.

I cannot replicate the issue you are having. All of my embed tests resuse the last manual setting or defaults to auto. You might have something going on environmentally on your machine. I don’t know but it needs to be followed up on your existing thread not this thread please.

HI Barry,

Thank you in advance for you help. I’ve tried the previous codes you posted here, but still getting an error. My site is hyperfmi.com, but the page with the feed is https://www.hyperfmi.com/hyperview.

Your help is greatly appreciated.

https://player.twitch.tv/?channel=hyperfmi_viewer&parent=www.hyperfmi.com&parent=hyperfmi.com&parent=www-hyperfmi-com.filesusr.com

Is the correct structure. You had a path instead of jsut the domain name. So copy the same parents to stream b (and chat when you add that)

You Rock!!! Thank you Barry!!!

Sorry, last thing. Is there a way to remove the follow icon / button on the screen, when I’m not streaming?

Not to my knowledge no.

You could instead use code to show/hide different content if the stream is live or not, but you might have problems doing that on Wix

Understood. Thanks again!! You quick response was amazing!

I have a website we are streaming to as well. Unfortunately this change has me scrambling to get a fix. Here is the page link.

https://fppta.org/virtual-learning-series-live-stream/

and here is the current iframe from the twitch page:

<iframe src="https://player.twitch.tv/?channel=fppta&parent=www.example.com" frameborder="0" allowfullscreen="true" scrolling="no" height="378" width="620"></iframe>

Thank you for the help in advance

If you change your embed to this, it should work:

<iframe src="https://player.twitch.tv/?channel=fppta&parent=fppta.org" frameborder="0" allowfullscreen="true" scrolling="no" height="378" width="620"></iframe>```

The channel embed stopped working on our wordpress website due to the recent update.

The embed used to work successfully. I’ve been using JS in Wordpress. After the update we saw the ā€œrefused to frameā€ error. I then updated the code to include the parent parameter (where I entered all the possible url versions), but now we see the ā€œthis embed is misconfiguredā€ error. Any suggestions?

This is the current bit of code:

<!-- Load the Twitch embed script -->
<script src="https://embed.twitch.tv/embed/v1.js"></script>

<!-- Create a Twitch.Embed object that will render within the "twitch-embed" root element. -->
<div align="center" id="twitch-embed"></div>
<script type="text/javascript">
  new Twitch.Embed("twitch-embed", {
    width: '100%',
    height: '100%',
    channel: "damdtv",
    parent: ["cinemaofthedamd.nl/collective/", "www.cinemaofthedamd.nl/collective/", "cinemaofthedamd.nl", "www.cinemaofthedamd.nl"]
  });
</script>

You need to move your website to https://and the correct code is as follows:

<html>
  <body>
<div id="twitch-embed"></div>

    <!-- Load the Twitch embed script -->
    <script src="https://embed.twitch.tv/embed/v1.js"></script>

    <!-- Create a Twitch.Embed object that will render within the "twitch-embed" root element. -->
    <div align="center" id="twitch-embed"></div>
    <script type="text/javascript">
      new Twitch.Embed("twitch-embed", {
        width: '100%',
        height: '100%',
        channel: "damdtv",
        parent: ["cinemaofthedamd.nl", "www.cinemaofthedamd.nl"]
      });
    </script>
</body>
</html>

Hi everyone. Please, help! I’m going nuts here.

My broken url is: https://www.tingenindustries.com/classes and I must be missing something in my attempted fixes.

I’ve reverted to the version that was working up until the change on the Twitch side a few days ago.

So I tried everything and I can’t seem to get it working.

website is www.fragjuice.com

Not sure what I’m putting in wrong. Any help would be greatly appriciated.
Thank you.

Use

https://player.twitch.tv/?channel=giantnine&enableExtensions=true&muted=true&player=popout&volume=0.5&parent=www.tingenindustries.com&parent=tingenindustries.com

Yours is working. Seems you fixed it?

Oh really?
Thanks! I think I know what I did wrong…figures after I ask huh?