- Moderator
- #561
From Wikipedia:
http://en.wikipedia.org/wiki/M3U#Format
The M3U file can also include comments, prefaced by the "#" character. In extended M3U, "#" also introduces extended M3U directives.
So I think it should be okay to do this:
https://github.com/MediaPortal/Medi...laylistSupport/PlayListM3uIO.cs?source=cc#L73
Code:if (trimmedLine.StartsWith(M3U_INFO_MARKER)) { ... } else if (!trimmedLine.StartsWith("#")) { if (!AddItem("", 0, trimmedLine)) break; }
The important change is the "else if" instead of just else.
Good like try that
So for testing it :
I remove from : \TvEngine3\TVLibrary\TVLibrary\Implementations\DVB\Graphs\DVBIP\TvCardDVBIP.cs
if (dvbipChannel.Url != _defaultUrl && IsAbsoluteUrl(dvbipChannel.Url))
to
if (dvbipChannel.Url != _defaultUrl)
And add your code