NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Portal

Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,053
» Latest member: lunnar
» Forum threads: 64,995
» Forum posts: 595,445

Full Statistics

Online Users
There are currently 2253 online users.
» 2 Member(s) | 2247 Guest(s)
Applebot, Baidu, Bing, Google, mvallevand, Radar73

Latest Threads
EPG script not creating x...
Forum: Linux
Last Post: mvallevand
5 hours ago
» Replies: 1
» Views: 21
Any chance to find a V6 d...
Forum: Linux
Last Post: mvallevand
11 hours ago
» Replies: 8
» Views: 92
Proxmox LXC (Helper Scrip...
Forum: Linux
Last Post: mvallevand
11 hours ago
» Replies: 5
» Views: 47
Streaming Failed (transco...
Forum: Windows
Last Post: mvallevand
Yesterday, 11:31 AM
» Replies: 7
» Views: 157
Manual recordings
Forum: Windows
Last Post: Joram
Yesterday, 04:33 AM
» Replies: 7
» Views: 83
Comskip for the web clien...
Forum: NextPVR Support
Last Post: mvallevand
2025-10-07, 10:13 PM
» Replies: 4
» Views: 53
Recording interrupted
Forum: NextPVR Support
Last Post: mvallevand
2025-10-07, 04:41 PM
» Replies: 1
» Views: 37
NextEnd v5 trial release
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: BrettB
2025-10-07, 03:54 PM
» Replies: 442
» Views: 91,418
Aspect ratio
Forum: Kodi / XBMC
Last Post: mvallevand
2025-10-07, 01:50 PM
» Replies: 1
» Views: 48
No LiveTV or Recording on...
Forum: Windows
Last Post: cher
2025-10-07, 10:21 AM
» Replies: 2
» Views: 106

 
  Hibernate/Auto wakeup TV recording?
Posted by: William Yeung - 2005-11-12, 04:10 PM - Forum: GB-PVR Support (legacy) - Replies (1)

Does GB-PVR wakes up my PC for recording if I put it in hibernation?

Print this item

  Suttering Video
Posted by: Dubya - 2005-11-12, 04:03 PM - Forum: GB-PVR Support (legacy) - No Replies

Have you guys seen a problem with stuttering video in the latest release?

It seems like a network issue but I've changed out my ethernet cable and I'm still having the problem... I'm using the famous linksys router WRTG45. Is there anyway to tell if my mediamvp is running at 10 mB or 100? Is it a software issue perhaps? Is anyone else having this problem?

Thanks,
Dubya

Print this item

  No Sound on recordings
Posted by: kirkholt - 2005-11-12, 04:00 PM - Forum: GB-PVR Support (legacy) - Replies (1)

Hello

I just bought and installed an hauppauge pvr150 mce and installed gbpvr on my win xp prof sp2 machine.

I have sound on live tv and when I use timeshifting, but when I play my recordings, there is no sound.

Any ideas ?

Best Regards

Kirkolt

Print this item

  Leadtek PVR2000 Remote Support
Posted by: William Yeung - 2005-11-12, 03:55 PM - Forum: Developers - Replies (1)

Dear all,
Hehe I tried this program- its awesome! I love it so much (well still have a bit glitches, but afterall its a very good program for PVR).

However, as my title stated... I have a PVR2000 remote... seems I have no way to get it work with GB-PVR (I want to get my parents able to use that Tongue), any progress so far?

By the way I have written a long long email to leadtek kick somebody's butt regarding their poor answer about SDK question found in this album.

I made a donation as well Tongue Good job and keep it going!

Print this item

  De-interlacing on Xvid encode?
Posted by: scottmso - 2005-11-12, 03:24 PM - Forum: GB-PVR Support (legacy) - Replies (4)

Hey, I set up the automatic Xvid encode on my GB-PVR install. It works pretty well, except the fact that I still see some artifacts from interlacing in my videos. How can I make it so that these artifacts won't appear in the Xvids?

Print this item

  DVB Scans Finding All Channels
Posted by: johnnyb - 2005-11-12, 02:06 PM - Forum: Wishlist - Replies (3)

Before I ask for more, I would just like to say that GBPVR is great......

Here in the UK, some of the TV channels only transmit at certain times of the day. I think some even share a multiplex frequency. Problem is, the channel has to be active for GBPVR to find the channel during a scan. Scanning with Hauppauge WinTV always finds all the channels, at any time of the day, as does the DVB digibox on my TV. I don't understand the technicalities, but all the information must be available at all times.

Just a wish.

Print this item

  Plugin update : UK Cinema Listings
Posted by: McBainUK - 2005-11-12, 01:19 PM - Forum: Community Announcements - Replies (16)

Due to some good feedback including lots of suggestions on my original post, I've been working on the new version of UK Cinema Listings.

Head over to the wiki to get V1.5. Alas, no trailers yet, aiming for that in V2.0.

As always, comments and suggestions appreciated Smile

Print this item

  XSL Transformations on xmltv files for gbpvr
Posted by: alibert - 2005-11-12, 09:01 AM - Forum: Developers - Replies (6)

Hi,

maybe someone is also interested in this.

Since gbpvr is only using the 'title', 'sub-title' and 'desc' tags of xmltv files for generating epg data, but xmltv files can contain much more information, i've written a small xsl-file as a workaround to put those other information into the 'desc'-tag.

Currently the nodes 'episode-num', 'category', 'country', 'date', 'credits' and 'rating' are used.

I'm german so it is targetted to a german gbpvr and contains some german words like 'Buch' or 'Moderation', but it should be easy to translate it in any other language you want.

Here it is:

Code:
<xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:output method="xml" indent="yes" encoding="iso-8859-1"/>

<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>

<xsl:template match="/tv/programme">
<xsl:copy>
<xsl:apply-templates select="@*" />
<xsl:apply-templates select="title" />
<xsl:apply-templates select="sub-title" />
<desc>
<xsl:apply-templates select="episode-num" />
<xsl:apply-templates select="category" />
<xsl:apply-templates select="country" />
<xsl:apply-templates select="date" />
<xsl:apply-templates select="desc" />
<xsl:apply-templates select="credits" />
<xsl:apply-templates select="rating" />
</desc>  
</xsl:copy>
</xsl:template>

<xsl:template match="/tv/programme/title">
<xsl:copy><xsl:apply-templates select="@*|node()" /></xsl:copy>
</xsl:template>

<xsl:template match="/tv/programme/sub-title">
<xsl:copy><xsl:apply-templates select="@*|node()" /></xsl:copy>
</xsl:template>

<xsl:template match="/tv/programme/episode-num">
<xsl:text>Folge </xsl:text><xsl:value-of select="." />
<xsl:choose>
<xsl:when test="not(../category) and not(../country) and not(../date)"><xsl:text>
</xsl:text></xsl:when>
<xsl:otherwise><xsl:text> | </xsl:text></xsl:otherwise>
</xsl:choose>
</xsl:template>

<xsl:template match="/tv/programme/category">
<xsl:value-of select="." />
<xsl:choose>
<xsl:when test="not(../country) and not(../date)"><xsl:text>
</xsl:text></xsl:when>
<xsl:otherwise><xsl:text> | </xsl:text></xsl:otherwise>
</xsl:choose>
</xsl:template>

<xsl:template match="/tv/programme/country">
<xsl:value-of select="." />
<xsl:choose>
<xsl:when test="not(../date)"><xsl:text>
</xsl:text></xsl:when>
<xsl:otherwise><xsl:text>, </xsl:text></xsl:otherwise>
</xsl:choose>
</xsl:template>

<xsl:template match="/tv/programme/date">
<xsl:value-of select="." /><xsl:text>
</xsl:text>
</xsl:template>

<xsl:template match="/tv/programme/desc">
<xsl:value-of select="." /><xsl:text>
</xsl:text>
</xsl:template>

<xsl:template match="/tv/programme/credits">
<xsl:apply-templates select="presenter" />
<xsl:apply-templates select="guest" />
<xsl:apply-templates select="producer" />
<xsl:apply-templates select="director" />
<xsl:apply-templates select="actor" />
<xsl:apply-templates select="writer" />
</xsl:template>

<xsl:template match="/tv/programme/credits/presenter">
<xsl:if test="position()=1">Moderation: </xsl:if>
<xsl:value-of select="." />
<xsl:call-template name="comma"/>
<xsl:call-template name="newline"/>
</xsl:template>
<xsl:template match="/tv/programme/credits/guest">
<xsl:if test="position()=1">Zu Gast: </xsl:if>
<xsl:value-of select="." />
<xsl:call-template name="comma"/>
<xsl:call-template name="newline"/>
</xsl:template>
<xsl:template match="/tv/programme/credits/producer">
<xsl:if test="position()=1">Von: </xsl:if>
<xsl:value-of select="." />
<xsl:call-template name="comma"/>
<xsl:call-template name="newline"/>
</xsl:template>
<xsl:template match="/tv/programme/credits/director">
<xsl:if test="position()=1">Regie: </xsl:if>
<xsl:value-of select="." />
<xsl:call-template name="comma"/>
<xsl:call-template name="newline"/>
</xsl:template>
<xsl:template match="/tv/programme/credits/actor">
<xsl:if test="position()=1">Mit: </xsl:if>
<xsl:value-of select="." />
<xsl:call-template name="comma"/>
<xsl:call-template name="newline"/>
</xsl:template>
<xsl:template match="/tv/programme/credits/writer">
<xsl:if test="position()=1">Buch: </xsl:if>
<xsl:value-of select="." />
<xsl:call-template name="comma"/>
<xsl:call-template name="newline"/>
</xsl:template>

<xsl:template match="/tv/programme/rating">
<xsl:if test="@system='FSK'">FSK: <xsl:value-of select="value/." /></xsl:if>
</xsl:template>

<xsl:template name="comma"><xsl:if test="not(position()=last())">, </xsl:if></xsl:template>
<xsl:template name="newline">
<xsl:if test="position()=last()">
<xsl:text>
</xsl:text>
</xsl:if>
</xsl:template>

</xsl:stylesheet>

For example, the output of this programme:

Code:
<programme start="20051111051000 +0100" stop="20051111055000 +0100" showview="98-25-430" channel="rtl2.de">
    <title lang="de">Hallo Holly</title>
    <sub-title lang="de">Die coole ältere Schwester / Ein alter Papagei</sub-title>
    <desc lang="de">Valerie beschließt die Zügel bei Holly etwas lockerer zu lassen, da sie sich durch die ständigen Gebote wie eine strenge Mutter vorkommt. Holly nutzt das natürlich sofort aus. Dabei setzt sie ihre neu erworbene Freiheit gleich wieder aufs Spiel...</desc>
    <credits>
      <director>Shelley Jensen</director>
      <actor>Amanda Bynes</actor>
      <actor>Jennie Garth</actor>
    </credits>
    <date>2002</date>
    <category lang="de">Comedy-Serie</category>
    <country lang="de">USA</country>
    <video>
      <present>yes</present>
      <colour>yes</colour>
    </video>
    <audio>
      <present>yes</present>
      <stereo>mono</stereo>
    </audio>
  </programme>

looks like this:

Code:
<programme start="20051110170000 +0100" stop="20051110180000 +0100" showview="731-294" channel="rtl2.de" clumpidx="0/1">
      <title>Hallo Holly</title>
      <sub-title lang="de">Die coole ältere Schwester / Ein alter Papagei</sub-title>
      <desc>Comedy-Serie | USA, 2002
Valerie beschließt die Zügel bei Holly etwas lockerer zu lassen, da sie sich durch die ständigen Gebote wie eine strenge Mutter vorkommt. Holly nutzt das natürlich sofort aus. Dabei setzt sie ihre neu erworbene Freiheit gleich wieder aufs Spiel...
Regie: Shelley Jensen
Mit: Amanda Bynes, Jennie Garth
</desc>
   </programme>

I'm using saxon as xml processor, but it should also work with any other.

-alibert

Print this item

  TVHarvest Gone - Now what ....
Posted by: Ambro - 2005-11-12, 05:51 AM - Forum: GB-PVR Support (legacy) - Replies (9)

NEWS FLASH: ninemsn attempts to cause damage to the WAF for my PVR. :mad: :mad: :mad: :mad:

Anybody in Australia got a good program that will output files which the gb-pvr XMLTV plugin can accept?? I was previously using TVHarvest and as most aussie's know this no longer works.

Tried another proggy called JavaXMLTVGrabber2; it doesn't seem to output a file that gb-pvr can read.

Will use bladerunner if I have to, however from other threads it seems this may have problems too.

Print this item

  Recordings Issue
Posted by: u_canes_u - 2005-11-12, 05:48 AM - Forum: GB-PVR Support (legacy) - Replies (9)

After a TV show is recorded, it doesn't seem to place a record under the Recordings (not in Whats New nor Ready). The show is being recorded (I can browse to the show from the Video Library in GBPVR. It looks as though ComSkip is working fine because I can watch through the Video Library and the commercials are detected.

I tried a Compact and Repair operation from with MS Access. Still not working.

Let me know what information I can provide to help you diagnose this issue.

Thanks and keep up the good work!

GBPVR Version: 94.13
ComSkip Version: 0.77

Print this item

Pages (6401): « Previous 1 … 5317 5318 5319 5320 5321 … 6401 Next »
Jump to page 

© Designed by D&D, modified by NextPVR - Powered by MyBB