Player Embed Guide
You can easily embed our M3U8 player on your own website.
Basic Embed Method
<iframe src="https://playm3u8.org/player.html?url=YOUR_M3U8_URL" width="100%" height="450" frameborder="0" allowfullscreen> </iframe>
URL Parameters
| Parameter | Description |
|---|---|
| url | M3U8 video URL (required) |
| autoplay | Auto play (1/0) |
| muted | Muted (1/0) |
Responsive Layout
<style>
.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
<div class="video-container">
<iframe src="https://playm3u8.org/player.html?url=YOUR_URL"
frameborder="0" allowfullscreen></iframe>
</div>β οΈ Note: Due to browser policies, autoplay usually requires muted audio.