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,230
» Latest member: thoitiethomnay4
» Forum threads: 65,291
» Forum posts: 602,035

Full Statistics

Online Users
There are currently 943 online users.
» 2 Member(s) | 936 Guest(s)
Baidu, Bing, Facebook, Google, Yandex, mvallevand, nolipro

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

 
  Installation ended prematurely because of an error?
Posted by: MaidenQuebec - 2008-11-07, 12:33 AM - Forum: GB-PVR Support (legacy) - Replies (12)

Hi,

I've tried reinstalling GB-PVR and always get thos error. I've tried rebooting, delting the original folder...nothing works.

Anyone knows a solution to this?

Print this item

  Can't play any file recorded with HD-PVR
Posted by: MaidenQuebec - 2008-11-06, 11:16 PM - Forum: GB-PVR Support (legacy) - Replies (6)

Hi,

I don't know why but I can't play any .ts files recorded with HD-PVR (divx plays fine). With mpg file recorded on another capture card, I get sound but no image.

PVRX2 freezes anytime I try to play something I've recorded with HD-PVR. Those files play fine with Media Player or any other player I have tried.

Anyone ever expericed this problem?

I'm using the latest build 1.3.

Thanks!

Print this item

  Asus PE9400......analog mode ntsc
Posted by: zonko - 2008-11-06, 11:02 PM - Forum: Hardware - Replies (2)

Hello...I am having trouble getting this card to work in Vista Home Premium. Can some one please let me know how the bda.ini should read?

Thank you in advanceSmile

Print this item

  1.2.9 download?
Posted by: fb67 - 2008-11-06, 10:58 PM - Forum: GB-PVR Support (legacy) - Replies (5)

Does anyone per chance have the 1.2.9 installer available? I have an old ThinkPad that makes a great client. At least it did until GBPVR.exe went away and I'm thinking that was the last version that the GBPVR executable was still included.

Thanks

Print this item

  FileSystemEvent triggers twice
Posted by: bgowland - 2008-11-06, 10:36 PM - Forum: Developers - Replies (3)

I want to automatically reload the user settings file when a user makes a change to prevent them having to restart the dvbt radio service. Code as follows...

Code:
private static DvbtrUserSettings UserSettings; private FileSystemWatcher UserSettingsFileWatcher;
Code:
UserSettings = new DvbtrUserSettings(GBInstallDir + @"plugins\DVB-T Radio\DVBTRadio.xml"); UserSettingsFileWatcher = new FileSystemWatcher(GBInstallDir + @"plugins\DVB-T Radio", "DVBTRadio.xml"); UserSettingsFileWatcher.NotifyFilter = NotifyFilters.LastWrite; UserSettingsFileWatcher.Changed += new FileSystemEventHandler(UserSettingsFileWatcher_Changed); UserSettingsFileWatcher.EnableRaisingEvents = true;
Code:
void UserSettingsFileWatcher_Changed(object sender, FileSystemEventArgs e) { Log.WriteLine("FileWatcher_Changed event received: " + e.FullPath); if (e.ChangeType == WatcherChangeTypes.Changed) { Log.WriteLine("UserSettings file change. Reloading..."); UserSettings.Load(); Log.WriteLine("UserSettings: "); // Cut for brevity } }
Log file entries...
Code:
06/11/2008 22:14:00.452 FileWatcher_Changed event received: C:\Program Files\Devnz\GBPVR\plugins\DVB-T Radio\DVBTRadio.xml 06/11/2008 22:14:00.452 UserSettings file change. Reloading... 06/11/2008 22:14:00.467 UserSettings: 06/11/2008 22:14:00.467 AudioDecoderName: 06/11/2008 22:14:00.467 DisableScreenSaver: False 06/11/2008 22:14:00.467 EnableGetNowNext: True 06/11/2008 22:14:00.467 ONID: -1 06/11/2008 22:14:00.467 PlaybackBufferDelay: 500 06/11/2008 22:14:00.467 ScanFullEPG: True 06/11/2008 22:14:00.467 StopOnChannelChange: False 06/11/2008 22:14:00.467 UseLivePlayback: True 06/11/2008 22:14:00.467 FileWatcher_Changed event received: C:\Program Files\Devnz\GBPVR\plugins\DVB-T Radio\DVBTRadio.xml 06/11/2008 22:14:00.467 UserSettings file change. Reloading... 06/11/2008 22:14:00.483 UserSettings: 06/11/2008 22:14:00.483 AudioDecoderName: 06/11/2008 22:14:00.483 DisableScreenSaver: False 06/11/2008 22:14:00.483 EnableGetNowNext: True 06/11/2008 22:14:00.483 ONID: -1 06/11/2008 22:14:00.483 PlaybackBufferDelay: 500 06/11/2008 22:14:00.483 ScanFullEPG: True 06/11/2008 22:14:00.483 StopOnChannelChange: False 06/11/2008 22:14:00.483 UseLivePlayback: True
At first I thought it might be receiving an event for the folder AND one for the file which is why I got it to log e.FullPath but it's two events just for the file. I'm simply opening the file in Notepad (before starting the service) then making a change and saving without closing.

Any ideas?

Cheers,
Brian

Print this item

  Still no chamnnels even after reinstall of Vista!
Posted by: nemulate - 2008-11-06, 10:22 PM - Forum: GB-PVR Support (legacy) - Replies (3)

Hi,

just re-installed Vista as couldn't get any channels found in config. (Had tv pack installed) Now get 'unhandled exception' message instead Sad Any ideas anyone? From the logs it sounds like a bda driver issue but I've updated the driver from Hauppauge site! Logs attached if anyone can have a look?

Cheers

Print this item

  slick skin folder image
Posted by: garymeds - 2008-11-06, 10:12 PM - Forum: GB-PVR Support (legacy) - Replies (2)

blue skin displays folder images from an image within the dir named folder.jpg - this not the case for the slick skin? only displays images for files?

Print this item

  PCH only shows "buffering..." after upgrading to 1.3.7
Posted by: steveum - 2008-11-06, 08:28 PM - Forum: MVPMCX2 and other NMT stuff - Replies (2)

I just upgaded to 1.3.7. Whenever I try to play a video/recording via the popcorn hour, I can't get past the "buffering..." logo. It hangs on this logo for about a minute, then returns back to GBPVR menu.

The upgrade is the only change I made. I verified I can still play videos from a share through PCH interface.

Anyone have any ideas on where on what might be causing this?

I have attached my logs.

Print this item

  MVP: See inside DVD folder
Posted by: zehd - 2008-11-06, 07:51 PM - Forum: Wishlist - Replies (15)

I thought I'd bump this and hope that sub has a little time to look into it, when he's done his day job! LOL

Currently, using the GB-PVR gui on an MVP, DVD folders (disk or folders) using a video_ts directory structure, is inaccessable.

I have made improvements to ZProcess that would help transcode on the fly a vob set, and works great if the vobs are not in a video_ts folder.

Now if only I could get into a DVD structure while in MVP...

ZProcess could be set to take whatever file was selected to run, ignore it, and actually start the first large vob in a set (usually the main movie), and string together all the rest of the vobs in the set...

(yes, the vobs will need to be unencrypted (anydvd))...

Print this item

  Error when using slick skin
Posted by: cdr_pro - 2008-11-06, 07:47 PM - Forum: GB-PVR Support (legacy) - Replies (17)

Hi,

when I select the slick skin, gbvr starts up with a wite screen and a big
red cross on it and an error message "Untreated handle..." (or somthing like that)
If I use the standard skin (blue), gbpvr works perfectly.
Does someone have an idea what that could be??

Print this item

Pages (6426): « Previous 1 … 2689 2690 2691 2692 2693 … 6426 Next »
Jump to page 

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