Integrate Seen’s video player seamlessly into your website with a simple HTML snippet. Follow the steps below to embed the player and customize its appearance.

Screenshot 2025-02-20 at 09.51.08.png

1. Basic Integration

To embed the Seen video player on your webpage, include the following <iframe> snippet in your HTML code:

<iframe src="<https://player.seen.io/v/AhdlZ6Qq28LDQAptGHUY>"
        style="aspect-ratio: 16 / 9; width: 900px; border: 0;"
        webkitallowfullscreen mozallowfullscreen allowfullscreen
        allow="clipboard-write; fullscreen; web-share;">
	</iframe>

Understanding the URL Structure:

Parameters Explained:

2. Customising the Player

You can modify the width or adjust the aspect ratio to fit your design:

Responsive Width Example:

To make the video player responsive, use CSS instead of a fixed width:

<style>
  .seenio-player {
    width: 100%;
    max-width: 900px;
    height: 600px;
  }
</style>

<iframe class="seenio-player"
        src="<https://player.seen.io/v/AhdlZ6Qq28LDQAptGHUY>"
        style="aspect-ratio: 16 / 9; border: 0;"
        scrolling="no"
        webkitallowfullscreen mozallowfullscreen allowfullscreen
        allow="clipboard-write; fullscreen; web-share;">
</iframe>

Adjusting Aspect Ratio: