且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我如何将此 m3u8 嵌入到我的网页中?

更新时间:2023-12-06 15:14:22

只有 Safari 6.0+ 具有原生 HLS 支持.您不能在桌面上将其与 HTML5 一起使用.

通过 Flash 支持 HLS 的免费播放器是 mediaelement.js

mediaelement.js - HLS 演示.

My title says it all. i have m3u8 file i need to embed

tried using this method(below) but it says "video format or mime type is not supported"

<div id='player'>
            <video width=100% height=100% src="http://cdncities.com/deranalive/deranalive/playlist.m3u8" type="application/x-shockwave-flash" controls autoplay>
            </video>

</div>

i tried jwplayer wizard, on there it works, but it not free.... i am dont know what to do.

anyone know a free player? or solution for that code?

thanks.

Only Safari 6.0+ has native HLS support. You can't use it with HTML5 on a desktop.

A free player that supports HLS via Flash is mediaelement.js

mediaelement.js - HLS Demo.