M3U8播放器嵌入指南

您可以轻松地将我们的M3U8在线播放器嵌入到您自己的网站中。

基础嵌入方法

<iframe 
  src="https://playm3u8.org/player.html?url=YOUR_M3U8_URL" 
  width="100%" 
  height="450" 
  frameborder="0" 
  allowfullscreen>
</iframe>

URL参数说明

参数说明
urlM3U8视频地址(必填)
autoplay是否自动播放 (1/0)
muted是否静音 (1/0)

响应式布局

<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>

⚠️ 注意:由于浏览器策略限制,自动播放通常需要配合静音使用。