Gaps in epg around midnight (1 Viewer)

doskabouter

Development Group
  • Team MediaPortal
  • September 27, 2009
    4,990
    3,711
    Nuenen
    Home Country
    Netherlands Netherlands
    MediaPortal Version: 1.0.2.22555
    MediaPortal Skin: Blue3wide
    Windows Version: Vista Ultimate 32bit SP2
    CPU Type: AMD Athlon Dual Core 4850e 2.5 GHz
    HDD: WD 1TB
    Memory: 2GB DIMM DDR2
    Motherboard: Gigabyte GA-MA78GM-S2H
    Video Card: ATI Radeon HD 3200 Onboard
    Video Card Driver: 8.632.0.0
    Sound Card: Onboard
    Sound Card AC3: no
    Sound Card Driver:
    1. TV Card: Askey Saber HB-220
    1. TV Card Type: dual hybrid
    1. TV Card Driver: 7.4.14.2
    2. TV Card:
    2. TV Card Type:
    2. TV Card Driver:
    3. TV Card:
    3. TV Card Type:
    3. TV Card Driver:
    4. TV Card:
    4. TV Card Type:
    4. TV Card Driver:
    MPEG2 Video Codec:
    MPEG2 Audio Codec:
    h.264 Video Codec:
    Satelite/CableTV Provider:
    HTPC Case: Silverstone LC-16
    Cooling:
    Power Supply:
    Remote: iMON
    TV: Philips 42PES00001
    TV - HTPC Connection: Hdmi

    Hi all,

    I noticed that I always have a gap around midnight on one channel.
    It is the only channel in my program list that is merged, so maybe that is causing the trouble?
    Or maybe it is caused by tvgids.nl displaying shows after 0.00 at the current day?

    I am missing "Just shoot me!" and "Malcolm_in_the_middle" in the tvguide.xml
    Webepg version:2.4.5.22555

    Tvguide.xml:
    Code:
      <programme start="20090928234000 +0200" stop="20090929000500 +0200" channel="Nickelodeon/Comedy Central-[Merged]">
        <title>Frasier</title>
        <sub-title>Comedyserie</sub-title>
        <desc>over het wel en wee van radiopsycholoog Frasier.</desc>
        <category>Comedy</category>
      </programme>
      <programme start="20090929010000 +0200" stop="20090929012500 +0200" channel="Nickelodeon/Comedy Central-[Merged]">
        <title>The Simpsons</title>
        <sub-title>Animatieserie</sub-title>
        <desc>over de familie Simpson.</desc>
        <category>Animatie</category>
      </programme>

    webepg.log:
    Code:
    2009-09-28 18:35:17.693000 [Info.][WebEPG-xmltv]: WebEPG: SubLink Request http://www.tvgids.nl/programma/8471533/Yes%2C_dear/ TVGids.nl - Programma » Yes, dear TVGids.nl - Programma » Yes, dear POST: 
    2009-09-28 18:35:17.798000 [Info.][WebEPG-xmltv]: WebEPG: Guide, Program Info: 20090928234000 / 20090929000500 - Frasier
    2009-09-28 18:35:17.798000 [Info.][WebEPG-xmltv]: WebEPG: SubLink Request http://www.tvgids.nl/programma/8471534/Frasier/ TVGids.nl - Programma » Frasier TVGids.nl - Programma » Frasier POST: 
    2009-09-28 18:35:17.894000 [Info.][WebEPG-xmltv]: WebEPG: Guide, Program Info: 20090929000500 / 20090929003500 - Just shoot me!
    2009-09-28 18:35:17.894000 [Info.][WebEPG-xmltv]: WebEPG: SubLink Request http://www.tvgids.nl/programma/8471535/Just_shoot_me%21/ TVGids.nl - Programma » Just shoot me! TVGids.nl - Programma » Just shoot me! POST: 
    2009-09-28 18:35:17.984000 [Info.][WebEPG-xmltv]: WebEPG: Guide, Program Info: 20090929003500 / 20090929010000 - Malcolm in the middle
    2009-09-28 18:35:17.984000 [Info.][WebEPG-xmltv]: WebEPG: SubLink Request http://www.tvgids.nl/programma/8471536/Malcolm_in_the_middle/ TVGids.nl - Programma » Malcolm in the middle TVGids.nl - Programma » Malcolm in the middle POST: 
    2009-09-28 18:35:18.012000 [Info.][WebEPG-xmltv]: WebEPG: Guide, Program Info: 20090929010000 / 20090929012500 - The Simpsons
    2009-09-28 18:35:18.012000 [Info.][WebEPG-xmltv]: WebEPG: SubLink Request http://www.tvgids.nl/programma/8471539/The_Simpsons/ TVGids.nl - Programma » The Simpsons TVGids.nl - Programma » The Simpsons POST: 
    2009-09-28 18:35:18.101000 [Info.][WebEPG-xmltv]: WebEPG: Guide, Program Info: 20090929012500 / 20090929015000 - Family guy

    webepg.xml:
    Code:
        <Channel displayName="Nickelodeon/Comedy Central">
          <merged>
            <merged id="nickelodeon.nl" grabber="NL\1-www_tvgids_nl.xml" start="05:00" end="19:59" />
            <merged id="thebox.nl" grabber="NL\1-www_tvgids_nl.xml" start="19:59" end="04:59" />
          </merged>
        </Channel>


    I traced it down to this line in trunk\mediaportal\Utils\Time\TimeRange.cs, in the method IsInRange(long time)
    Code:
     _end > checkTime && checkTime.Hour > 0)

    It is related to 0001677: WebEPG drops programs on merged channels - MediaPortal Bugtracker and has (probably) been changed to
    Code:
     _end > checkTime && checkTime.Hour >= 0)
    in version 1.01, but in version 1.02 it still is > 0
     

    Users who are viewing this thread

    Top Bottom