I've been hunting for a PCI express x1 satellite card for a while now; my WHS has only one PCI slot, and two PCIe x1 slots.
Anyway I found this the other day; does anyone know based upon the stats alone, as it hasn't been released as a retail/OEM product yet, whether this will work with GBPVR?
If it does then I will be a very happy man . My family have been asking for a while now why they can only watch TV in one room at the moment, and I can't take another weekend of having to watch the X Factor.
If not, does anyone know of any other PCIe x1 satellite cards, or a country I can emigrate to that hasn't bought into the X Factor franchise yet?
cheers
Reggie
edit:- I should have posted about the BGT3595, not the BGT3590- link changed, same question :o
I should know this and I swear I used to but I think my memory going. I accidentally clicked the setting to not have it run after recordings and now I have several that did not get it run on.
Is there a way to get the post processing bat file to run on a recording after the fact, like do it manually?
I've had GBPVR on 3 motherboards now, the first didn't, The second did perfectly and the third - a new one won't.
I've been looking at forums and this seems to be a common problem - the idle detection in windows is unreliable.
Does anyone know of how to get this going well?
(Feature request) If GBPVR had an option to go to sleep after a period of inactivity it could work well as it would know whether its idle.
I have been using GBPVR for some time now. I have used both recent versions 10311 and 10407 and both versions have the same issue.
1. If a scheduled recording starts whilst watching a recording then the HTPC restarts.
2. If I restart the recording service whilst its already recording, again the HTPC restarts. (I know i should do that, but i think its caused by the same issue).
I have rebuilt the system numerous times and the problem remains. I have all the latest windows updates etc.
I have looked through the log files but i dont quite know what I am looking for.
Hi all.
recently purchased an Technika AEDTR160S7 hard drive freeview recorder.
i have a problem when recording. what ever i am recording seems to jump alot as if its missed like an odd second of the program here and there. also while recording what every channel you are watching jumps the same. when not recording every thing is fine. we have a good signal here so if any one can suggest any thing it would be great.
When implementing BaseButtonListUiTask, you have two methods/functions (among others): GetName() and GetDescription(). This GetDescription() example uses GBPVRCommonUtilities (a third party library) while the GetName() example does not. You can choose which you want and use the same method for both. This example is in C#
Code:
// This example requires a reference to GBPVRCommonUtilities
public override string getDescription()
{
System.Xml.XmlDocument s = new System.Xml.XmlDocument();
try { s.Load("config.xml"); }
catch
{
// Custom log method. Do whatever you like here in the event that config.xml could not be loaded.
// CommonUtils.LogMessage(LogLevel.Error, "Could not load config.xml");
}
// This queries <PluginSettings> <NetflixPlugin> <WatchNowDesc>, if it is not found, it returns "Watch movies from netflix.com" by default.
return ConfigFileUtilities.GetStringConfigSetting(s, "NetflixPlugin", "WatchNowDesc", "Watch movies from netflix.com", false);
}
// This example requires no additional references.
public override string getName()
{
string DispName;
System.Xml.XmlDocument s = new System.Xml.XmlDocument();
try
{
s.Load("config.xml");
// This queries <PluginSettings> <NetflixPlugin> <WatchNowName>.
DispName = s.SelectSingleNode("/settings/PluginSettings/NetflixPlugin/WatchNowName").InnerText;
}
catch (Exception)
{
If the query fails, use this value by default.
DispName = "Netflix Watch Now";
}
return DispName;
}
So in my plugin setting section of config.xml, I can have the following to make them appear in the main menu of GBPVR:
You can add a text field in your Config form if you like or just have people edit the config.xml manually if you only want power users to do it. Keep in mind that if you allow the change in your Config form, users must exit Config, then reopen it and enable the plugin under the new name. If they just change the description, restarting Config is not necessary.
Edit: I stink at instructions so feel free to ask questions on anything that's not clear.
Edit 2: Corrected the post. BaseButtonListUiTask should be implemented and not IMenuTask.
Fantastic program!!! I've been using it (1.4.7) for months with no glitches ... two FTA TV Tuners (Twinhan & DVICo).
BUT (there's always a 'but'), I rebooted the PC this morning, and GBPVR won't load! It runs the Tray app OK, but won't recognise the tuners (but ChrisTV does) and won't let me into the CONFIG of PVRX2 programmes, without throwing this error:
===== =====
The 'PVRX2Friendlyname' start tag on line 101 does not match the end tag of 'PVRX2enderer' Line 101, position 5
===== =====
The <Details> says:
************** Exception Text **************
System.Xml.XmlException: The 'PVRX2FriendlyName' start tag on line 101 does not match the end tag of 'PVRX2enderer'. Line 101, position 29.
at System.Xml.XmlTextReaderImpl.Throw(Exception e)
at System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
at System.Xml.XmlTextReaderImpl.ThrowTagMismatch(NodeData startTag)
at System.Xml.XmlTextReaderImpl.ParseEndElement()
at System.Xml.XmlTextReaderImpl.ParseElementContent()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.Load(String filename)
at GBPVR.Backend.Common.xcbcfc48b9705b7a2..ctor()
at GBPVR.Backend.Common.xcbcfc48b9705b7a2.x479a7b07c9d5bd70()
at GBPVRTray.xb1053296b0fdb8ef.x566bdd41bc6f2632(Object xdf2e3583f942db7b, EventArgs xc4f45905cb1fc7ba)
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
===== =====
GBPVR is such a friendly program, I'd hate to think that I've upset its friendlyname unintentionally!
I tried to <repair> it, but no good (it just kept rolling back ...)
I uninstalled it (ControlPanel)l and re-installed it, but no good (same behaviour as above)
Sorry, but I just don't understan what I've done to upset it! Advice gratefully received
mvallevand Wrote:I verified this too, and have fixed it, it's not a problem in the Music plugin so I overlooked it.
Martin
I also found that the standard Net Radio plugin now creates its gbnetradio-n.mp3 file in c:\temp even with WR2 still on the desktop - is that part of the same problem?