Bug #3330
IPTV: unknown playlist format
0%
Description
An iptv m3u list that I used with previous builds, now stopped to work with: iptv: unknown playlist format for network 'name test network'
This is the list: http://slexy.org/view/s20JJIkPDj
Is there something wrong in the list?
Files
History
Updated by Jaroslav Kysela almost 9 years ago
- Status changed from New to Invalid
Have you tried to download this using wget/curl ?
I got a HTML document. The server is misconfigured.
Updated by Mario D almost 9 years ago
Could you try with the raw URL? http://slexy.org/raw/s20JJIkPDj
Updated by Mario D almost 9 years ago
I uploaded the file on web for your commodity. I got the local m3u file as well as the generator script: same result.
Updated by Mario D almost 9 years ago
Jaroslav, could you consider to reopen this report? I can't use any m3u list for auto IPV network any more...
Updated by D Trepmag over 8 years ago
I have a m3u file which read successfully with VLC:
https://raw.githubusercontent.com/trepmag/iptv-ch/master/sd-hd-open.m3u
Tvheadend responds "IPTV: unknown playlist format" when trying to setup an 'iptv automatic network' with the above url.
I there something wrong in the format?
Updated by D Trepmag over 8 years ago
Ok, converting the file from windows/crlf to unix line feed fixed the issue.
Updated by Jaroslav Kysela over 8 years ago
TVH imports the file from comment#7 with CR+LF just fine.. It must be something different. Could you attach the file which cannot be imported ?
Updated by D Trepmag over 8 years ago
Yes, the file from #7 was converted with dos2unix in the meantime; here is the file before conversion:
https://raw.githubusercontent.com/trepmag/iptv-ch/33f9feb7f0decaed4325fed10b4eec1f51630ae8/sd-hd-open.m3u
Updated by ömer gorur over 7 years ago
I coding a python code.
My script fetching token url from the channel's site to local ts file.
Example:
1.ts
2.ts
3.ts
Example playlist file:
#EXTM3U
#EXTINF: 0, 1. Channel
1.ts
#EXTINF: 0, 2. Channel
2.ts
#EXTINF: 0, 2. Channel
3.ts
In this way work channels on VLC Player on Windows.
But not work on TVHeadEnd 4.2
I added file:///storage/iptv/playlist.m3u8 line on iptv automatic network section.
It's happening : "iptv: unknown playlist format for network"
I send this file to my http server and added link on iptv automatic network section. It works on http server.
Sorry my bad English. I hope can tell you my problem.
Why not play local files on playlist?
Updated by saen acro over 7 years ago
ömer gorur wrote:
I coding a python code.
My script fetching token url from the channel's site to local ts file.
Example:
1.ts
2.ts
3.tsExample playlist file:
#EXTM3U
#EXTINF: 0, 1. Channel
1.ts
#EXTINF: 0, 2. Channel
2.ts
#EXTINF: 0, 2. Channel
3.tsIn this way work channels on VLC Player on Windows.
But not work on TVHeadEnd 4.2
I added file:///storage/iptv/playlist.m3u8 line on iptv automatic network section.
It's happening : "iptv: unknown playlist format for network"
I send this file to my http server and added link on iptv automatic network section. It works on http server.
Sorry my bad English. I hope can tell you my problem.
Why not play local files on playlist?
This is M3U8 hls streaming
end url must include this playlist to work
content of M3U8 is dynamical
Updated by ömer gorur over 7 years ago
The same files work on HTTP protocol.
But not work file:/// protocol
Anyway. I did it with lftp. But if it work end url on local, it would be nice.
Updated by saen acro over 7 years ago
This files are only a chunks of stream (segments) served for HLS (HTTP Live Streaming)
they are segmented to http web server and joined to stream by this M3U8 manifest file (not exactly playlist)
The idea is to have stream working in not so good connection
also used in timeshift technology
http://www.streamingmedia.com/Articles/Editorial/What-Is-.../What-is-HLS-(HTTP-Live-Streaming)-78221.aspx
https://developer.apple.com/streaming/
M3U playlist IS NOT equal to M3U8