They are beautiful. I just added this one to my bookmark list of webcams. Thanks!
Bob
I never want to see a day
That's over forty degrees
I'd rather have it thirty,
Twenty, ten, five and let it freeeeEEEEEEeeze!
My Seek the Peak 2012 Photo Set
I've posted this before, but for the webcam fans check out this site: http://zeitcam.com/webcams/
They capture and store time lapses from many of the webcams around the world (including the OBS deck cam). Pretty cool.
Mark
Keep close to Nature's heart...
and break clear away, once in awhile,
and climb a mountain or spend a week in the woods.
Wash your spirit clean. - John Muir
Hiking photos: http://picasaweb.google.com/mtruman42
Hiking Blog: http://theramblingsblog.blogspot.com/
Seek the 2011 Peak page: Mark Truman's Pledge Page
Did anyone notice that lag on this webcam is very long?
Thanks,
Robert
Brad (a 6288 club member)
http://bradstreet.zenfolio.com Personal Photo sales site
http://public.fotki.com/bradbradstreet Personal photo web site
http://public.fotki.com/MWO/saved/2012/ MWO image & video archive site 2006-2012
Bob
I never want to see a day
That's over forty degrees
I'd rather have it thirty,
Twenty, ten, five and let it freeeeEEEEEEeeze!
My Seek the Peak 2012 Photo Set
Even in some cases with fast download speeds, the upload speeds are very slow. the two need to be in balance and most companies squeeze on the uploads. So, if the town has a slow connection for download, their upload speed could be terrible.
I can now get speeds in the car (at a rest area and not driving of course) that we were happy with 2 years ago at home.
Brad (a 6288 club member)
http://bradstreet.zenfolio.com Personal Photo sales site
http://public.fotki.com/bradbradstreet Personal photo web site
http://public.fotki.com/MWO/saved/2012/ MWO image & video archive site 2006-2012
Bob
I never want to see a day
That's over forty degrees
I'd rather have it thirty,
Twenty, ten, five and let it freeeeEEEEEEeeze!
My Seek the Peak 2012 Photo Set
The link I was using stopped working for me. Here is one that seems to be current. The images update every 15 seconds.
http://www.ramsau.de/index.php?optio...id=109&lang=en
Brad (a 6288 club member)
http://bradstreet.zenfolio.com Personal Photo sales site
http://public.fotki.com/bradbradstreet Personal photo web site
http://public.fotki.com/MWO/saved/2012/ MWO image & video archive site 2006-2012
Gorque (03-09-2010)
You can copy and paste the code below into Notepad or Wordpad and save it to your desktop as ramsau.html. It will show the current image and update it every 15 seconds. You can use the same code for almost any webcam image which shows up as a jpg image on the webcam's site. For instance, the new Balsam's webcam image is at http://www.thebalsams.com/webcams/hotel/balsam1.jpg. Just replace the Ramsau url with that one in the two places in the code and save it as balsams.html. You can also change the title text (between the <title> </title> tags) to match the site. The Balsams site updates once a minute, so change the "refreshCam" figure to 60000 from 15000. (60 seconds from 15 seconds.)
Code:<html> <head> <title>Ramsau</title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <script language="Javascript"> <!-- function refreshCam(){ rfsh = new Date() ; rfsh = "?"+rfsh.getTime(); document.images["webcam"].src = "http://www.ramsau.de/webcam/ramsau-kirche.jpg"+rfsh; setTimeout("refreshCam()", 15000); } //--> </script> </head> <body topmargin="5"> <div align="center"> <table border="0" width="645" id="table1" cellspacing="1"> <tr> <td width="209" valign="top"> <td bgcolor="#C0C0C0" style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px" bordercolor="#000000"> <img border="0" src="http://www.ramsau.de/webcam/ramsau-kirche.jpg" width="640" height="480" name="webcam"></a></td> <script language="JavaScript"> <!-- if( document.images ) refreshCam(); //--> </script> </table> </div> </body> </html>
Last edited by M_Six; 03-09-2010 at 12:01 PM.