# תמיכה בקובץ M3U8

**URL:** https://meta.discourse.org/t/m3u8-file-support/293584
**Category:** Development
**Tags:** onebox
**Created:** [31 בינואר,‏ 2024,‏ 3:29am UTC](https://meta.discourse.org/t/m3u8-file-support/293584 "2024-01-31T03:29:58Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [31 בינואר,‏ 2024,‏ 11:43pm UTC](https://meta.discourse.org/t/m3u8-file-support/293584/3 "2024-01-31T23:43:49Z")

</div>

Hello,

The HTTP Live Streaming (HLS) links are not supported as onebox.

What you can do is to use the `<video>` HTML tag.  
For example:

```html
<video controls preload="metadata">
  <source src="https://demo.unified-streaming.com/k8s/features/stable/video/tears-of-steel/tears-of-steel.ism/.m3u8" type="application/x-mpegURL" />
</video>

```

You can use this [Insert Video](https://meta.discourse.org/t/insert-video/147651) component to insert the `<video>` tag easily.

From what I see, the [HLS support](https://caniuse.com/http-live-streaming) is pretty limited to Android/IOS devices, with no major desktop browser except Safari.

If you want to make it work on a Desktop, you will need a third-party library, such as [videojs](https://github.com/videojs/video.js), and a Theme component to integrate it.

---

_[View the full topic](https://meta.discourse.org/t/m3u8-file-support/293584)._
