There is a lot going on in the world, and some of it I need to know when I wake up in the morning before I go to work. So I am finding it useful to display graphical information from the internet on my TV for my viewing pleasure that cycles through a series of images every 10-15 seconds. Using the below links, put all the images into a folder (local to the OSD or on a NAS) and point your OSD slideshow application at it:
I needed Local Traffic details for Southern California:
http://forums.neurostechnology.com/index.php?topic=9034.0I need to know what the weather will be like from the "Weather Channel":
Today -
http://image.weather.com/web/forecast/us_wxhi1_large_usen_600.jpgTonight-
http://image.weather.com/web/forecast/us_wxlo1_large_usen_600.jpgTomorrow -
http://image.weather.com/web/forecast/us_wxhi2_large_usen_600.jpgWest Coast Satellite -
http://image.weather.com/images/sat/westsat_600x405.jpgLiving in California with power outages, knowing if we will be hit with an outage is important from "California ISO"
http://www.caiso.com/outlook/ems_large.gifLiving in an area where earthquakes happen almost daily and good to watch from the "USGS":
http://earthquake.usgs.gov/eqcenter/recenteqsus/Maps/US2/33.35.-119.-117.gifSince I have friends all over the world, I use "EarthCam" to find webcams in near real time:
Venice, IT -
http://turismo.regione.veneto.it/webcam/full.jpgLondon's Trafalgar Square -
http://www.bbc.co.uk/london/webcams/images/trafalgar_square.jpgPyramids of Egypt -
http://www.pyramidcam.com/netcam.jpgHuntington Beach, CA -
http://www.hbcams.com/hbpsouth.jpgDisney California Adventure, Anaheim, CA -
http://webcam.hojoanaheim.com/oneshotimage.jpgGolden Gate Bridge, S.F., CA -
http://static.cbslocal.com/cbs/kpix/webcams/ggb_nu.jpgSan Francisco City Harbor, CA -
http://hd-sf.com/images/livedata/480-live.jpg-------------------------------
So how to do it. I use my linux box with "wget" and ImageMagick to get the images just right. Then put them all together in a script and have cron execute the script every 5 or 10 minutes....
Here is an example with the Pyramids of Egypt:
1) Get the image:
$ wget -O /tmp/pyramids.jpg pyramids.jpg
2) Most images don't have a label or need to be resized to fit on the TV, so I use ImageMagick's "convert" command:
$ convert /tmp/pyramids.jpg -resize 526x400 -font Helvetica-Bold -fill white -box '#0008' -pointsize 13 -annotate +10+395 "Pyramids" /osd/pyramids.jpg
-------------------------------
There are 100's of webcams out there, but if there are any other useful images (besides webcams), post them, I'm looking to add more on my slideshow.
-wk