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,194
» Latest member: warez100
» Forum threads: 65,380
» Forum posts: 602,225

Full Statistics

Online Users
There are currently 1608 online users.
» 1 Member(s) | 1600 Guest(s)
Applebot, Baidu, Bing, Facebook, Google, Twitter, Yandex, mvallevand

Latest Threads
Newer version chopping of...
Forum: Windows
Last Post: mvallevand
4 hours ago
» Replies: 1
» Views: 32
Closed captioning in NPVR
Forum: Windows
Last Post: sub
2026-09-10, 06:27 PM
» Replies: 39
» Views: 3,898
unable to use tvhat on ra...
Forum: Linux
Last Post: basaltvest
2026-09-10, 07:22 AM
» Replies: 2
» Views: 506
Can't Scan for Channels F...
Forum: Linux
Last Post: mvallevand
2026-09-10, 03:19 AM
» Replies: 15
» Views: 994
New iOS/tvOS/macOS client...
Forum: NextPVR iOS and AppleTV Clients
Last Post: nolipro
2026-09-09, 10:35 PM
» Replies: 44
» Views: 6,538
More than one HDPVR to th...
Forum: Hardware
Last Post: mvallevand
2026-09-05, 04:51 PM
» Replies: 7
» Views: 286
actors producer director
Forum: Wishlist
Last Post: a1blues
2026-09-04, 09:20 PM
» Replies: 4
» Views: 241
Upcoming NextEnd addon an...
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: mvallevand
2026-09-04, 01:00 AM
» Replies: 1
» Views: 242
HDHomeRun can't find tune...
Forum: Linux
Last Post: mvallevand
2026-09-01, 05:58 PM
» Replies: 1
» Views: 227
Can't upgrade from 6.1.1....
Forum: NextPVR Support
Last Post: blobbyguts
2026-08-31, 10:56 AM
» Replies: 1
» Views: 174

 
  gbpcr running in Media Center Edition?
Posted by: merlinxxx - 2005-05-06, 12:35 PM - Forum: GB-PVR Support (legacy) - Replies (2)

Can I install and run gbpvr in Windows Media Center Edition?

Print this item

  Webadmin and Windows Firewall
Posted by: Stadsman - 2005-05-06, 11:50 AM - Forum: GB-PVR Support (legacy) - Replies (5)

What a great program, got it working flawlessly without any major problem. The only thing that I cannot figure out is how to set the Windows Firewall (Windows XP PRO SP2) to allow connections to the Webadmin. I tried allowing gbpvr.exe but to no avail. Any suggestions?

TIA,

Chris

Print this item

  Random video noise when recording using PVR250
Posted by: lchiu7 - 2005-05-06, 11:18 AM - Forum: GB-PVR Support (legacy) - Replies (4)

Have been using a Hauppauge PVR250 to record via composite video for a while using WinTV2K. The recordings are fine with no issues.

Just installed GBPVR to try it out. Installed okay and there were no problems at all. But have noticed that the programs it records using the same PVR250 and video input have random video noise in them (see attached image). Since I am guessing GBPVR uses the same software chain to record as WinTV2K I am a a loss to work out why this noise appears

Anybody with any ideas?

System is a Athlon XP 2000+, Shuttle XPC case/MB, WinXP SP2, GBPVR version 0.91.12

Thanks

Larry

Print this item

  Radio playback
Posted by: Cpt. Chris - 2005-05-06, 08:48 AM - Forum: GB-PVR Support (legacy) - Replies (14)

The radio playback sound quality can be better. The LAME MP3 codec is used to convert the cable radiochannel. Is it possible to increase the bitrate? If yes, how?

Thank you,

Chris

BTW: Great product!

Print this item

  GB-PVR and TwinHan Digital Tuner
Posted by: qcinformer - 2005-05-06, 08:11 AM - Forum: GB-PVR Support (legacy) - Replies (3)

Hi

I am a new GB-PVR user and have just installed the program. I have a TwinHan USB DVB-T tuner connected that does work with the TwinHan software.

I have downloaded the EPG from Bleb (UK) and that seems to be installed correctly.

However, when I click on the "Map Digital Channels to EPG Channels" button I get the following message:

"The Microsoft MPEG-2 Demultiplexer does not seem to be available on your machine. BDA support will not work without it".

The PC is a P4 2.8GHz running the following environment:
Windows 2000 Professional (5.0, Build 2195) Service Pack 4
DirectX 9.0b (4.09.0000.0902)

I enclose two attachments that might make things clearer. (Could not make attachments upload! - Sorry)

I would appreciate any help you can give.

qcinformer
UK

Print this item

  LoadRecordingSchedule()
Posted by: reven - 2005-05-06, 06:43 AM - Forum: Developers - Replies (5)

i have a problem in my videos where at load LoadRecordingSchedule() causes me problems and forces my videos to stop loading, and gbpvr to restart loading every plugin, trapping it in a forever loop and maxing out the cpu and ram. this problem has been in my videos for a while, and only know have i found out why. im using this code

Code:
foreach (ScheduledRecording scheduledRecording in GetScheduledRecordings()) { if(scheduledRecording != null) { if(scheduledRecording.getFileName().ToLower().EndsWith(fullName.ToLower()) && scheduledRecording.getProgramme() != null) { Description = scheduledRecording.getProgramme().getDescription(); Title = scheduledRecording.getProgramme().getTitle(); Subtitle = scheduledRecording.getProgramme().getSubTitle(); TimeSpan runtime = (TimeSpan)(scheduledRecording.getProgramme().getEndTime() - scheduledRecording.getProgramme().getStartTime()); Runtime = ""+ (runtime.Hours*60 + runtime.Minutes); if(Subtitle.Length > 0) { displayName = Subtitle; } MyVideosTask.database.AddToDatabase(new VideoInfo(fullName,description,Title,Subtitle,Runtime,"","",Seen,null),false); break; } } } }
and this is GetScheduledRecordings()
Code:
private IList GetScheduledRecordings() { Logger.Verbose("entered recording schedule"); if(ScheduledRecordings == null) { Logger.Verbose("debug 1"); ScheduledRecordings = ScheduleHelper.getInstance().LoadRecordingSchedule(); Logger.Verbose("debug 2"); ScheduleLoadedAt = DateTime.Now; Logger.Verbose("debug 3"); } else if(DateTime.Now > ScheduleLoadedAt.AddMinutes(30)) { Logger.Verbose("debug 4"); ScheduledRecordings = ScheduleHelper.getInstance().LoadRecordingSchedule(); Logger.Verbose("debug 5"); ScheduleLoadedAt = DateTime.Now; Logger.Verbose("debug 6"); } Logger.Verbose("debug 7"); return ScheduledRecordings; }
ignore the debug lines Smile.

anyway when i run this the GetScheduledRecordings doesnt even get called it crashes somewhere before then (the same line of code, just before the method is called, found this out by useful debug lines Smile). im just wondering if anyone knows why this is happening and how i can fix this.

i put a temp fix on it by using a boolean LOADING, which i set to true when my vids is created and false once all the loading is done, and when LOADING=true i just skip this method.

i can use this fix without much problems, but if a entry in the myvids database doesnt exist for a file, it will check the recordingschedule to see if a description exists in there (and when loading it checks the virtual root + paused files... which is how i discovered the problem). paused files isnt a problem since that is refreshed whenever a videostopping event happens. but the root never gets refreshed (well hardly ever, it might do i have to check the code).

i think this is the same problem jeff was having with vidarch awhile ago.

anyway, long boring post has finished

TIA
reven.

Print this item

  USB-UIRT with Telstraclear cable?
Posted by: lchiu7 - 2005-05-05, 08:44 PM - Forum: Hardware - Replies (8)

I just installed GB-PVR and am pretty impressed with it. Up till now I have been using WinTV2K with the Hauppauge PVR-250 card, recording via the composite video ouput from my Telstraclear (NZ) cable box. But to make sure the channels are okay I have been using a remote control with macro facility (it can change the cable box to the channel to record at a designated time).

It works well most of the time unless I forget to program the remote :-(

Anyway thought it would be much easier to do it one step and use GB-PVR and the USB-UIRT interface and get the TV listings from http://mr.geek.nz/epg/. I have just purchased the USB-UIRT and now realised I didn't check to see if it will control the TCL cable box (I have the GI SurfView box). And of course, didn't think to check what would happen when TCL moves to digital cable and a newer cable box. Should I have purchased the USB-UIRT with the 56KHz option? (not sure why that option exists)

Anybody have any information on this?

Thanks

Larry

Print this item

  Theatre Pro 550
Posted by: alan michael - 2005-05-05, 07:59 PM - Forum: GB-PVR Support (legacy) - Replies (3)

Having trouble getting gbpvr to work with my ATI Theatre Pro card. When I select Live TV the window goes black and locks up my machine after about 2 seconds. I can play DVDs and music etc and the epg works. Downloaded the latest drivers for the card from ATI. Have the latest copy of gbpvr that includes support for this card. The software that came with the card Power Cinema 3 works fine. Any ideas. Thanks ...

Print this item

  How do I change the order of the main menu?
Posted by: davids1024 - 2005-05-05, 06:40 PM - Forum: Old Stuff (Legacy) - Replies (1)

How do I change the order of the main menu screen?
I recently aded the Weather plugin and would like to move it up in the list.
Thanks,
Dave

Print this item

  Guide information for repeat episodes??
Posted by: Vintook - 2005-05-05, 06:08 PM - Forum: GB-PVR Support (legacy) - Replies (6)

I'm in the US and would like to know how I can get the guide to show if an episode is a repeat or not? If I could get it to show this then I wouldn't have to switch over to my regular TVGuide for it. Is there something I can add in a configuration file? I'm a total newbie so much help is needed! Oh, I'm using the zap2it for the guide information.

Print this item

Pages (6435): « Previous 1 … 5794 5795 5796 5797 5798 … 6435 Next »
Jump to page 

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