IPTV not working (1 Viewer)

j1nx

Portal Pro
July 16, 2005
233
10
Re: AW: Re: IPTV not working

Now for the next thing on the list, what to do with my radio channels? How does DVB-IP radio work with this filter?
DAB-IP doesn't work with this filter. Its just for TV. Did you try to get the radio running with the inbuild web-Radio? It should work with that.

Stepko

Tried that, used the same type of streams in a different M3U and imported them in the radio section. It found all channels and inserted them in my radio channel list, but I got some eror message when I wanted to play them in MP. This could be a codec problem of course, will investigate that further the next coming days.

I suppose this filter will work with the HOT released RC2, isn't it?


To get back on the channel numbers, does anybody know that it is suppose to work that way or not. If so, this small issue could be reported as bug report at the appropriate section. Anyone who want's to look into the code?
 

j1nx

Portal Pro
July 16, 2005
233
10
moved this thread to support forums because it really isnt a bugreport.


You are right, not a bug report (anymore), but I don't think this is the right place as well.

This thread is about a bunch of people who try to extend the MPTVfilter such that it support UDP, RTP and HTTP. So more of a development thingy then a support thing. While you are at it anyway, maybe you can combine this thread with the one I created under the TV server plugin section? Otherwise I will make a link in that thread referring to this thread (for future search references).
 

Automate

Portal Pro
December 14, 2008
55
1
Home Country
United States of America United States of America
Maybe it does not work that way any more but it seemed to work that way on a previous version from the TV Server plug-in IPTV thread.

It didn't work in that way for quite long time.
Was this logic in the filter or in the base TV Server code? I assume if it is in the TV Server, a patch needs to be submitted. Do you know why this functionality was dropped? Did it cause problems?
 

j1nx

Portal Pro
July 16, 2005
233
10
As I understood this, the logic was in the Tv-Server code. The question is, is the code still there, but does not work. Or is it removed/was never there. In the first case, we shoudl raise a bug report. In the latter case we should raise a feature request.
 

dimka

Portal Pro
January 20, 2009
117
4
Hillerod
Home Country
Denmark Denmark
It looks like the logic behind of LCN (logical channel numbers) was broken at least for DVB-C and has been fixed in RC 1.1.0 RC2 (0002821: DVB-C channel scan is missing LCN information - MediaPortal Bugtracker). So lets try to install last release...

If it won't work there is some logic about LCN here TvEngine3/TVLibrary/SetupTv/Sections/CardDvbIP.cs. So we might have a look there

Code:
           TuningDetail currentDetail = layer.GetChannel(channel.Provider, channel.Name, channel.ServiceId);
            if (currentDetail == null)
            {
              //add new channel
              exists = false;
              dbChannel = layer.AddChannel(channel.Provider, channel.Name);
              dbChannel.SortOrder = 10000;
              if (channel.LogicalChannelNumber >= 1)
              {
                dbChannel.SortOrder = channel.LogicalChannelNumber;
              }
            }
 

disaster123

MP Donator
  • Premium Supporter
  • May 14, 2008
    3,558
    434
    Home Country
    Germany Germany
    AW: IPTV not working

    Just looked into the code - can anybody tell me why http is needed? Are there Providers who use http to provide TV Streams? Which format do they use?
     

    dimka

    Portal Pro
    January 20, 2009
    117
    4
    Hillerod
    Home Country
    Denmark Denmark
    I know at least 3 IPTV providers which streams package of russian TV & Radio channels over HTTP on public internet. I am personally the subscriber of one of those.

    My one streams video H.264 ~1.5M/bit audio a52 codec 160kb/s over HTTP.
     

    Users who are viewing this thread

    Top Bottom