NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 45 46 47 48 49 … 56 Next »
Weather Plug-in Update

 
  • 0 Vote(s) - 0 Average
Weather Plug-in Update
Jeff
Offline

Posting Freak

Posts: 1,933
Threads: 69
Joined: Oct 2004
#21
2005-04-17, 09:03 PM
I didn't change the part of the code that sets the screen size; that should be the same in both versions.

Jeff
Tulex
Offline

Member

Posts: 124
Threads: 30
Joined: Feb 2005
#22
2005-04-19, 02:09 PM
Any way of making the source choosable? I REALLY like the changes except for getting the info from msnbc. They seem to be 2-3 hours behind the weather channel for conditions.
Intel D915PBL with P4 550 3.4 W/1GB PC4200
Seagate 160GB and Plextor PX-716SA DVD SATA drives
DVI via Gigabyte GeForce 6600GT
Hauppauge WinTV-PVR150
CaptainVideo
Offline

Member

Posts: 142
Threads: 30
Joined: Mar 2005
#23
2005-04-19, 09:07 PM
crp Wrote:I don't know which lines to modify to "fit" the Weather plugin to my tv screen.

Instead of shrinking the screen, get a bigger TVWink
GB-PVR (usually newest version) (Love it! Direct access to 45-button Hauppauge remote not working)
WXP SP2 / Cel 2.9Ghz / 512DDR/400 / Intel PERL / PVR-150, Matrox G550, "160"Gb WD 7200/8Mb
Tulex
Offline

Member

Posts: 124
Threads: 30
Joined: Feb 2005
#24
2005-04-25, 06:49 AM
Since installing the newest weather plugin, I noticed that it takes a bit longer to launch GB. I assume that is because it has to get the info to put on the main screen. I don't mind waiting 5 seconds, but there is no way of knowing if it is launching as there is no hour glasss, so I end up clicking again and get multiple GBs running. As I like having that info there, is there anyway to make it delay until after launch? This is also a problem if you want to launch GB at boot up. It launches, but doesn't get the info as it must be loading before my internet connects.
Intel D915PBL with P4 550 3.4 W/1GB PC4200
Seagate 160GB and Plextor PX-716SA DVD SATA drives
DVI via Gigabyte GeForce 6600GT
Hauppauge WinTV-PVR150
Jeff
Offline

Posting Freak

Posts: 1,933
Threads: 69
Joined: Oct 2004
#25
2005-04-25, 01:56 PM
I have an update, not yet ready to release, that loads the weather in a seperate thread, which should address this issue.

Jeff
Tulex
Offline

Member

Posts: 124
Threads: 30
Joined: Feb 2005
#26
2005-04-25, 02:16 PM
One change I'd really like to see in the future is to have the pending recordings in a seperate panel, and to be able to look more than 23 hrs ahead.
Intel D915PBL with P4 550 3.4 W/1GB PC4200
Seagate 160GB and Plextor PX-716SA DVD SATA drives
DVI via Gigabyte GeForce 6600GT
Hauppauge WinTV-PVR150
Jeff
Offline

Posting Freak

Posts: 1,933
Threads: 69
Joined: Oct 2004
#27
2005-04-25, 02:22 PM
I can increase the time window in a future release. sub also provides a pending recording panel that will cycle through all pending recordings and is in its own panel. You could try that one and just turn off the display of pending recordings in the video archiver panel.

Jeff
Tulex
Offline

Member

Posts: 124
Threads: 30
Joined: Feb 2005
#28
2005-04-25, 02:57 PM
I've been thinking about combining the 2, just didn't want to go about it if it was a change coming. Will involve moving one of the panel locations, but no big deal. Thanks though for the plugin, I love having the weather on the main screen like that.
Intel D915PBL with P4 550 3.4 W/1GB PC4200
Seagate 160GB and Plextor PX-716SA DVD SATA drives
DVI via Gigabyte GeForce 6600GT
Hauppauge WinTV-PVR150
HenkH
Offline

Member

Posts: 100
Threads: 6
Joined: Mar 2005
#29
2005-04-25, 09:38 PM
Jeff Wrote:I have an update, not yet ready to release, that loads the weather in a seperate thread, which should address this issue.

If you're currently working on the plugin you might consider improving the image handling. When loading the Map I'm getting the error message

Code:
Error: msg=0x100 (WM_KEYDOWN) hwnd=0x760be6 wparam=0xd lparam=0x1c0001 result=0x0   :  c:\Temp\weatherNLXX0005.jpg   :     at System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement)
   at System.Drawing.Image.FromFile(String filename)
   at GBPVR.Plugins.WeatherPlugin.WeatherTask.DopplerRadar()
   at GBPVR.Plugins.WeatherPlugin.WeatherTask.render(Boolean& requiresMoreRendering)

The code uses a very crude way to get the image data from the internet and displaying it: it writes the image data to a temporary file which is later reloaded as an image. .NET has a far more elegant way to achieve this:

Code:
Bitmap bitmap = null;
System.Uri uri = new System.Uri(imageUrl);
WebRequest request = WebRequest.Create(uri);
WebResponse response = request.GetResponse();
if ( response.ContentType.StartsWith("image") )
{
   bitmap = new Bitmap( response.GetResponseStream() );
}
Jeff
Offline

Posting Freak

Posts: 1,933
Threads: 69
Joined: Oct 2004
#30
2005-04-26, 12:05 AM
Thanks; I like it. I'll add it to the next version of the weather plug-in and the video archiver plug-in.

Jeff
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (7): « Previous 1 2 3 4 5 … 7 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  JustRetro skin update Jaggy 0 2,009 2015-09-14, 12:37 AM
Last Post: Jaggy
  JustRetro skin update Jaggy 0 2,235 2014-04-12, 01:11 AM
Last Post: Jaggy
  RT_FilmFix update bgowland 0 1,582 2012-03-01, 07:45 PM
Last Post: bgowland
  SearchLite Update 1.3 mvallevand 23 6,302 2011-03-20, 10:26 PM
Last Post: mvallevand
  Weather plugin for NPVR scb147 9 3,044 2010-10-18, 07:42 PM
Last Post: scb147
  WebRadio Update MixMan 16 5,713 2009-08-14, 11:47 AM
Last Post: mvallevand
  Quartz update dfdario 0 1,513 2009-05-06, 05:50 AM
Last Post: dfdario
  Graph and TVPI Recorder Plug-in Release carpeVideo 114 41,652 2009-01-05, 11:59 PM
Last Post: smajor
  New Weather Icons MixMan 1 1,513 2008-11-21, 07:18 PM
Last Post: MixMan
  EPG Update: ChangeEPGSource and FixChannels zehd 4 2,746 2008-09-21, 12:25 AM
Last Post: zehd

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

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

Linear Mode
Threaded Mode