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,232
» Latest member: dojovad321
» Forum threads: 65,290
» Forum posts: 602,035

Full Statistics

Online Users
There are currently 1116 online users.
» 0 Member(s) | 1110 Guest(s)
Applebot, Baidu, Bing, Facebook, Google, Yandex

Latest Threads
NPVR Tray stuck showing E...
Forum: Windows
Last Post: mvallevand
2026-09-20, 05:23 PM
» Replies: 11
» Views: 879
Yauiclient hang when tryi...
Forum: NextPVR Other Clients
Last Post: mvallevand
2026-09-19, 07:55 PM
» Replies: 7
» Views: 126
Computer Freeze_ups
Forum: Windows
Last Post: mvallevand
2026-09-17, 12:49 PM
» Replies: 3
» Views: 229
m3u Update 7.0.5
Forum: Windows
Last Post: haysfamily6a
2026-09-13, 09:32 PM
» Replies: 2
» Views: 647
Upcycling a Windows 10 PC...
Forum: Hardware
Last Post: fla
2026-09-13, 04:57 PM
» Replies: 9
» Views: 3,878
NextEnd and NFL Preseason
Forum: Windows
Last Post: Swami
2026-09-13, 04:17 PM
» Replies: 2
» Views: 346
yauiclient crashes eventu...
Forum: NextPVR Other Clients
Last Post: gsmoot
2026-09-13, 02:13 AM
» Replies: 10
» Views: 415
Newer version chopping of...
Forum: Windows
Last Post: mvallevand
2026-09-12, 08:53 AM
» Replies: 1
» Views: 216
Closed captioning in NPVR
Forum: Windows
Last Post: sub
2026-09-10, 06:27 PM
» Replies: 39
» Views: 4,264
Can't Scan for Channels F...
Forum: Linux
Last Post: mvallevand
2026-09-10, 03:19 AM
» Replies: 15
» Views: 1,197

 
  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

  Dual Tuner With a PVR250 and a PVR350
Posted by: lumstar - 2005-11-12, 04:04 AM - Forum: GB-PVR Support (legacy) - Replies (2)

Hi there,

I have had my setup running well with just a 250 for a long time. I added a 350 to my computer, and set it up as board 2. Now when I start a recording both boards record the same show. One of the recording is good, the other leaves an mpg file about 200KB in size and is unviewable.

At this point I removed the pvr350 capture source. I still get the same result, two video files (one good, one bad).

Any ideas? What am I doing wrong?

Thanks in advance,

Stephen

Print this item

  Playback wishes
Posted by: PaulH - 2005-11-12, 03:38 AM - Forum: Wishlist - Replies (5)

Just some thoughts on playback..

One thing I wish is if there was a way to exit from a playback and have GBPVR remember where I left off. When going back to a recording, either select (Play) or maybe a new button (Resume) ?

Bringing up the display on the MediaMVP only shows it for a few seconds. Any way to keep the display up until I hit the button on the Hauppauge remote again?

I also wish there was a way to playback at 2x, 4x, 8x, etc.


-Paul

Print this item

  Black screen trying to watch recording.
Posted by: DavidJames - 2005-11-12, 02:52 AM - Forum: GB-PVR Support (legacy) - No Replies

Running 94.12 and using an MVP. Sometimes when recording and I try to watch the recording from the beginning, all I get is a black screen. Anyone else have this experience?

Print this item

  My Video Question
Posted by: ViperDragon - 2005-11-12, 02:12 AM - Forum: Old Stuff (Legacy) - Replies (1)

I just setup My Videos and all the utils to burn shows to DVD. It does step 1 fine but then I just checked the system and it's showing a white screen with a red X across the screen. The system still responds and the mouse moves, I can get into start menu. It's been there for about 45 min and the HDD light is still flashing. Is this normal? Thanks!

ViperDragon

Print this item

  Modulator
Posted by: soccerdad - 2005-11-12, 01:38 AM - Forum: Hardware - Replies (11)

I have a room that I just can't get CAT 5 to for a MVP. I really don't want to do the wireless bridge route so I am still looking for ideas. I have run across some posts talking about using modulators to send the signal over coax. This sounds good if I can get it to work. I do not know much about them and am looking for any general info. I would be interested in hearing how people use them with GBPVR. Can you just plug your RCA cables from the Video and Audio out on the PC or MVP into it and then coax cable it into the house system? Part of me thinks this would work if you sent it out on an open channel, or do I have to do something more sophisticated?

I think this type of solution would also work to have the same recording showing on more than 1 TV at a time. Now, with multiple MVP's they are not in sync and the sound drives you crazy.

Print this item

  BlueMCE2 does not display xRecord well
Posted by: zaldwaik - 2005-11-11, 10:03 PM - Forum: Old Stuff (Legacy) - Replies (1)

I am using BlueMCE2 as it is my favorite skin. However, it does display xRecord well. A part of the screen in the bottom is missing, and not all recordings are displayed. It works well in other skins.

Print this item

Pages (6426): « Previous 1 … 5343 5344 5345 5346 5347 … 6426 Next »
Jump to page 

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