DVB-IP MediaPortal IPTV Source Filter (3 Viewers)

Status
Not open for further replies.

georgius

Retired Team Member
  • Premium Supporter
  • October 31, 2010
    1,376
    654
    Bratislava
    Home Country
    Slovakia Slovakia
    Hi Georgius! I have a question about Change Sid and Pid in stram feature. I want to modify mysql database directly, not to rescan all channels. Now all of channels in mptvdb have simple url format, like udp://@239.195.0.42:1234 , and SID and PID columns of them is set to their values. Do i need to modify URL to C:|url=udp://233.10.12.1:7777|SidValue=10|PidValue=50 or simple to udp://233.10.12.1:7777|SidValue=10|PidValue=50
    and paste SID and PID values 10 and 50 into serviceId and pmtPid database fields?
    You have to modify url to first format (C:|url=udp://233.10.12.1:7777|SidValue=10|PidValue=50) and also update serviceId to SidValue and pmtPid to PidValue.
     

    Andrusha777

    Portal Pro
    December 3, 2009
    132
    3
    Home Country
    Russian Federation Russian Federation
    georgius, i have tested your feature to change SID and PID in stream. Works for me! Thanks a lot! For anyone, who wants to use this feature here are SQL string to modify tuningdetails in MP for all of channels, except those, that was modified by hands.

    Code:
    UPDATE tuningdetail
    SET
      serviceId = 10, pmtPid = 50, url = concat("C:|url=udp://", substring(url, 8), "|SidValue=10|PidValue=50")
    WHERE
      istv = TRUE
      AND (serviceId <> 10 OR pmtPid <> 50);
    This query will update table tuningdetail and change urls string and sid and pid fields to 10 and 50. Previous urls must be like udp://@...
     

    netmans

    New Member
    February 24, 2012
    1
    0
    41
    Home Country
    Russian Federation Russian Federation
    guys tell me - I iptv (open channels) - set up on the media portal shows everything is fine, but when I connect Net(VPN-connection), iptv in media portal does not run, an error, but if you connect the 'Net (VPN-connection) during the iptv work inmedia portal, it continues to work, I understand the problem in the route (but what and where to prescribe them?)
     

    georgius

    Retired Team Member
  • Premium Supporter
  • October 31, 2010
    1,376
    654
    Bratislava
    Home Country
    Slovakia Slovakia
    guystell me- Iiptv(open channels) -set upon themedia portalshowseverything is fine, but whenI connectNet(VPN-connection), iptvinmedia portaldoes not run,an error, butif youconnect the'Net(VPN-connection)during theiptvworkinmedia portal,it continuesto work,I understandthe problemin theroute(butwhatand whereto prescribethem?)
    I think that only possibility is specify network interface card. Steps what to do you can find in first post of this thread.
     

    Dennis84

    New Member
    February 26, 2012
    3
    2
    Home Country
    Netherlands Netherlands
    I think I have the same problem as AJS. All channels say no signal and when I use the same file in VLC all channels work. I really hope there is a fix for this problem.
     

    georgius

    Retired Team Member
  • Premium Supporter
  • October 31, 2010
    1,376
    654
    Bratislava
    Home Country
    Slovakia Slovakia
    I think I have the same problem as AJS. All channels say no signal and when I use the same file in VLC all channels work. I really hope there is a fix for this problem.
    Until now I don't know what is bad. I sent to ajs some testing apps, but still no response.
     

    DragonQ

    Portal Pro
    August 30, 2011
    644
    79
    Home Country
    United Kingdom United Kingdom
    Does anyone know if this improved DVB-IP source filter will work with the UK's new IPTV channels on Freeview? I have no idea what the URLs to these streams are or if they're encrypted or not. :(
     

    georgius

    Retired Team Member
  • Premium Supporter
  • October 31, 2010
    1,376
    654
    Bratislava
    Home Country
    Slovakia Slovakia
    Does anyone know if this improved DVB-IP source filter will work with the UK's new IPTV channels on Freeview? I have no idea what the URLs to these streams are or if they're encrypted or not. :(
    If you don't know URLs of channels than is hard to say if it will work or not. Supported protocols are listed in first post including what is supported and what not. Encryption of channel is not relevant for filter, but is relevant for TV Server - you'll be unable to watch encrypted channel without decryption hardware.
     

    DragonQ

    Portal Pro
    August 30, 2011
    644
    79
    Home Country
    United Kingdom United Kingdom
    Well I kinda doubt they're encrypted since by definition they're free but I have no idea how anyone would find out the URLs. Maybe it's possible to find out from the logs of a Freeview HD set top box or something?
     
    Status
    Not open for further replies.

    Users who are viewing this thread

    Top Bottom