zhw2590582 / ArtPlayer

:art: ArtPlayer.js is a modern and full featured HTML5 video player
https://artplayer.org
MIT License
2.51k stars 265 forks source link

Unsupport M3U8 file / 不支持M3U8播放QAQ #679

Closed Dos7t3r closed 8 months ago

Dos7t3r commented 8 months ago

无法解析m3u8文件。。。官方文档的案例代码也运行失败QAQ

zhw2590582 commented 8 months ago

 你可以把你的M3U8地址贴出来吗,否则我也无法解答

Dos7t3r commented 7 months ago

你可以把你的M3U8地址贴出来吗,否则我也无法解答

这是一个示例M3U8 https://v8.suonizy-youku.com/202401/25/sVeZ3vmLeW1/video/index.m3u8 您可以试试

zhw2590582 commented 7 months ago

可以播放的,但你的地址有一定概率会出现502:demo%20%7B%0A%20%20%20%20%20%20%20%20if%20(art.hls)%20art.hls.destroy()%3B%0A%20%20%20%20%20%20%20%20const%20hls%20%3D%20new%20Hls()%3B%0A%20%20%20%20%20%20%20%20hls.loadSource(url)%3B%0A%20%20%20%20%20%20%20%20hls.attachMedia(video)%3B%0A%20%20%20%20%20%20%20%20art.hls%20%3D%20hls%3B%0A%20%20%20%20%20%20%20%20art.on(%27destroy%27%2C%20()%20%3D%3E%20hls.destroy())%3B%0A%20%20%20%20%7D%20else%20if%20(video.canPlayType(%27application%2Fvnd.apple.mpegurl%27))%20%7B%0A%20%20%20%20%20%20%20%20video.src%20%3D%20url%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20art.notice.show%20%3D%20%27Unsupported%20playback%20format%3A%20m3u8%27%3B%0A%20%20%20%20%7D%0A%7D%0A%0Avar%20art%20%3D%20new%20Artplayer(%7B%0A%20%20%20%20container%3A%20%27.artplayer-app%27%2C%0A%20%20%20%20url%3A%20%27https%3A%2F%2Fv8.suonizy-youku.com%2F202401%2F25%2FsVeZ3vmLeW1%2Fvideo%2Findex.m3u8%27%2C%0A%20%20%20%20type%3A%20%27m3u8%27%2C%0A%20%20%20%20customType%3A%20%7B%0A%20%20%20%20%20%20%20%20m3u8%3A%20playM3u8%2C%0A%20%20%20%20%7D%2C%0A%7D)%3B%0A%0Aart.on(%27ready%27%2C%20()%20%3D%3E%20%7B%0A%20%20%20%20console.info(art.hls)%3B%0A%7D)%3B)

Snipaste_2024-02-01_16-08-57

Dos7t3r commented 7 months ago

可以播放的,但你的地址有一定概率会出现502:demo%20%7B%0A%20%20%20%20%20%20%20%20if%20(art.hls)%20art.hls.destroy()%3B%0A%20%20%20%20%20%20%20%20const%20hls%20%3D%20new%20Hls()%3B%0A%20%20%20%20%20%20%20%20hls.loadSource(url)%3B%0A%20%20%20%20%20%20%20%20hls.attachMedia(video)%3B%0A%20%20%20%20%20%20%20%20art.hls%20%3D%20hls%3B%0A%20%20%20%20%20%20%20%20art.on(%27destroy%27%2C%20()%20%3D%3E%20hls.destroy())%3B%0A%20%20%20%20%7D%20else%20if%20(video.canPlayType(%27application%2Fvnd.apple.mpegurl%27))%20%7B%0A%20%20%20%20%20%20%20%20video.src%20%3D%20url%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20art.notice.show%20%3D%20%27Unsupported%20playback%20format%3A%20m3u8%27%3B%0A%20%20%20%20%7D%0A%7D%0A%0Avar%20art%20%3D%20new%20Artplayer(%7B%0A%20%20%20%20container%3A%20%27.artplayer-app%27%2C%0A%20%20%20%20url%3A%20%27https%3A%2F%2Fv8.suonizy-youku.com%2F202401%2F25%2FsVeZ3vmLeW1%2Fvideo%2Findex.m3u8%27%2C%0A%20%20%20%20type%3A%20%27m3u8%27%2C%0A%20%20%20%20customType%3A%20%7B%0A%20%20%20%20%20%20%20%20m3u8%3A%20playM3u8%2C%0A%20%20%20%20%7D%2C%0A%7D)%3B%0A%0Aart.on(%27ready%27%2C%20()%20%3D%3E%20%7B%0A%20%20%20%20console.info(art.hls)%3B%0A%7D)%3B)

Snipaste_2024-02-01_16-08-57

好的 感谢解答~