Stage TEN
Return to Stage TEN
  • Return to StageTEN.tv
  • Help Center
  • Get Started
    • Quick Start
    • Tutorials (Start here!)
      • Creator Tools Overview
      • Create a Live Show or Recording
      • Shopify Setup Guide
      • View & Publish Past Streams
      • Planning a Show
    • Best Practices
      • Tech: Doing a Tech Check Before you go Live
        • Framing & lighting tips
      • Marketing: Boost Your Show’s Conversion Rate
      • Creative: Show Formats for Shopping Success
  • Using Stage TEN
    • Studio
      • Studio Quick Start
      • Add Feeds, Guests & Assets
      • Building Scenes
      • Audience Chat
      • Conduct a Poll
      • Add Social Audiences
      • Connect App & Invite Links
      • Companion App
    • Your Stage (Channel Page)
      • Chat Moderation on the Stage TEN Interactive Player
      • Embed your live player on a Website
      • Featured Links
      • Stream to a Shopify Store
    • Monetization & Shopify
      • Live Shopping for Shopify Merchants
        • Connect Shopify from the Studio
        • Add live shows to your store
        • Add past shows to your store
        • Stream to the Shop App
          • Add Stage TEN to your Shop Store
        • More Shopify Help
          • Install the Stage TEN Sales Channel (Connecting from the Shopify App Store)
          • Make Shopify Products Available on Stage TEN
          • Storefronts using Vintage (1.0) Themes
          • Add Payment Methods for Shopify Checkout
      • Tipping
      • Live Shopping without a Shopify Store
      • Sell Products in Live Streams
    • Multistreaming & Social Destinations
      • Streaming to YouTube
        • Streaming to YouTube via RTMP
      • Streaming to Twitch
        • Connecting to Twitch via RTMP
      • Streaming to Facebook
        • Streaming with the Facebook Live Producer
      • Streaming to Instagram
      • Streaming to TikTok
        • Graphics & Assets for TikTok
      • Streaming to LinkedIn
      • Streaming to (& from) Zoom
      • Streaming using RTMP
      • Streaming to Shop App
    • Past Shows: Analytics & Publishing Recordings
      • Analytics
    • Account
      • Billing
  • Resources
    • Plan & Promote Your Show
      • Tips to Successfully Promote your Stream on Socials
      • Creating your Promotional Plan
      • Plan your Show with a Workback Calendar
        • Design Your Show Flow (Run of Show)
    • Assets and Graphics
  • Troubleshooting
    • How to contact Stage TEN Support
    • Common Issues
      • Fixing Camera, Microphone, or Screen Share Permissions
      • Troubleshooting Audio Problems
      • Internet Network Settings (how to work around a Firewall)
      • Ways to improve your internet speed
      • Why is the Text Overlay Extension Disabled?
      • Checking Permissions for Stage TEN on Facebook
      • Troubleshooting a Stage TEN Interactive Player that's embedded on your website
  • OTHER
    • Pro Studio (Classic)
      • Studio Basics
        • Computer and Internet Minimum Requirements
        • Setting the Stream Resolution
        • Recovery Mode: Handling interruptions
      • Participants & Feeds
        • Connect a Local Camera Feed
          • Connecting a Pro Camera (DSLR)
        • Invite Participants and Add Remote Feeds
        • Share your Screen or Application
          • Sharing Computer or Game Audio
        • Audio Sources, Music & Mixing
        • Recommended OBS and RTMP Settings for Use With Stage TEN
      • Building Scenes: Layouts and Overlays
        • Media Library: Videos, Images, Music
        • Play Videos in your Stream
        • Display Text Overlays
        • Creating Your Own Custom Overlays and Graphics
        • Scene Builder Hotkeys
      • Sell Products in Streams
        • Connect Shopify from the Pro Studio
      • Poll Viewers with Interactive Voting
      • Multistreaming (Pro Studio Classic)
      • Optimizing Stream Quality
        • Setting Resolution and Frame Rates
        • Improving the Quality of Your Broadcast on Stage TEN
  • Legal
    • Virtual Patent Marking
Powered by GitBook
On this page
  • Option 1: Basic Embed
  • Option 2: Using Enhanced Embed
  • Embedding Interactive Replays

Was this helpful?

  1. Using Stage TEN
  2. Your Stage (Channel Page)

Embed your live player on a Website

Add the Stage TEN Interactive Player to your website to enable live, interactive commerce.

PreviousChat Moderation on the Stage TEN Interactive PlayerNextFeatured Links

Last updated 1 year ago

Was this helpful?

Tip: Streaming to a Shopify storefront or the Shop App? Use these guides instead:

  • Add live shows to your store

  • Stream to the Shop App

Prerequisites:

  • If you want to support Live Shopping, you must have and connected your store to Stage TEN.


To go live on your website, you need to include your Interactive Player's unique embed code on that website where you want the stream to appear.

To do this, you can simply paste a basic embed, or if you're comfortable editing a bit of HTML code, you can use the enhanced embed provided below.

Option 1: Basic Embed

  1. In the Pro Studio, click the Settings button at the top right of the screen, then Destinations.

  2. Click the Stage TEN destination, then locate Embed broadcast.

  3. Here you can Copy the code snippet for your channel's Interactive Player.

Option 2: Using Enhanced Embed

The enhanced code allows for additional configuration, including adding a placeholder image for when you are not live and updating button colours. You will need to paste and customize this code as described below.

  1. Copy and paste the following template in your website editor.

<center>
<div id="stage-ten-wrapper" style="width: 100%; position: relative">
  <iframe
    src="https://play.stageten.tv/embed/CHANNEL_ID?splashImageURL=HORIZONTAL_IMAGE&splashImageURLVert=VERTICAL_IMAGE&accentColor=HEX_CODE"
    title="Stage TEN Interactive Player"
    style="width: 100%; height: 100%; position: relative; left: 0; top: 0"
    allow="fullscreen; autoplay"
    frameBorder="0"
  >
  </iframe>
  <script>
    // This function adjusts the height of the player element to fit its container and aspect ratio.
    const updateSize = () => {
      const stageTenWrapper = document.getElementById('stage-ten-wrapper')
      const currentWidth = stageTenWrapper.clientWidth
      // Adjust the 1000px value to control the switch between desktop and mobile layouts.
      if (currentWidth > 1000) {
        // Desktop
        stageTenWrapper.style['height'] = 'min(calc(' + Math.round(currentWidth * 1.1).toString() + 'px - 600px), calc(100vh - 150px))'
      } else {
        // Mobile
        stageTenWrapper.style['height'] = 'min(' + Math.round(currentWidth * (16/9)).toString() + 'px, calc(100vh - 50px))'
      }
    }
    window.addEventListener('load', updateSize)
    window.addEventListener('resize', updateSize)
  </script> 
</div>
</center>
  1. Modify line 4 of the template, and replace the PLACEHOLDERS (listed below) with your real values:

    1. CHANNEL_ID (Required) - This identifies your account. Follow the instructions for option 1 above to view your basic embed. Extract your channel ID from it as shown in this image:

    2. HORIZONTAL_IMAGE (Optional) - This image appears in your player's wide/horizontal layout when you are not live.

      • Image must already be uploaded to a hosting service so you can copy a public URL for it.

      • Recommended: 16:9 aspect ratio. PNG, JPEG, or GIF.

    3. VERTICAL_IMAGE (Optional) - This image appears in your player's narrow/vertical layout when you are not live.

      • Image must already be uploaded to a hosting service so you can copy a public URL for it.

      • Recommended: 16:9 aspect ratio. PNG, JPEG, or GIF.

    4. HEX_CODE (Optional) - This accent color is used in some of the player's buttons and elements.

      • Must be formatted as a hex code. For example, the code for green is 00FF00.

Tip: Hosting for Splash Images

You can upload images to your Shopify store (or get the url of an image from your store) by going to Content > Files. Find the image file, then copy the Link.


Embedding Interactive Replays

  1. Find the livestream you want to embed, then click View Details.

  2. Under Interactive Replay, click Manage.

  3. If prompted, generate the Interactive Replay. This may take a few minutes, depending on the length of your stream.

  4. Click the Embed tab, then Copy Code.

Just as with the live player, this embed code can be pasted in your website editor or modified as you see fit.


Note: Your website builder or tools may require additional configuration.

For example, some Wordpress sites require configuration to allow embeds with src urls outside of their own domain.

We recommend consulting the support resources and working closely with your web developers for guidance on how to proceed.

If you have any questions or require additional assistance, please contact Support (support@stageten.tv)

The must be encoded with a tool such as this .

The must be encoded with a tool such as this .

Alternatively, you can use a hosting service such as to get a url for your image.

In addition to your live player, you can also share and embed the Interactive Replays of past livestreams. These mimic the experience of watching the stream live, and include replaying of chat messages, and featured product events, and allow the viewers to shop from the same products as were available in the livestream. .

In the Dashboard, navigate to .

URL Encoder
URL Encoder
imgur
Past Streams
installed the Stage TEN sales channel
Learn more about Interactive Replays