No EXTM3U delimiter
nilopaim opened this issue · 0 comments
What do you want to do with Clappr?
I have a server running LAL and producing a HLS playlist that I can access using HTTPS.
Unfortunatelly I got an error "no EXTM3U delimiter".
The same playlist can be viewed by VLC without any problem.
What have you tried so far?
My viewer HTML page has the code as described on the docs:
`
<script> var playerElement = document.querySelector(".player"); var player = new Clappr.Player({ source: "https://mydomain.com/hls/x/playlist.m3u8", parent: playerElement, }); </script>`Obviously the source points to my server.
The contents of my playlist.m3u8 follow:
`#EXTM3U
#EXT-X-VERSION:3
#EXT-X-ALLOW-CACHE:NO
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:621
#EXTINF:10.000,
teste-1686243931790-621.ts
#EXTINF:10.000,
teste-1686243941797-622.ts
#EXTINF:10.000,
teste-1686243951795-623.ts
#EXTINF:10.000,
teste-1686243961795-624.ts
#EXTINF:10.000,
teste-1686243971788-625.ts
#EXTINF:10.000,
teste-1686243981796-626.ts
`
Any hints?