HTML & WEB-Design

Moderators: Jonathan
Number of threads: 1253
Number of posts: 3360

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Is there any HTML code for a webcam????? Posted by otthitterSLC on 14 Jan 2002 at 10:18 AM
Is there any HTML code to put a webcam onto a webpage??
Or is that in Javascript?

Any help will be greatly appreciated!!!!!!!!
Report
Re: Is there any HTML code for a webcam????? Posted by iDaZe on 15 Jan 2002 at 4:18 PM
: Is there any HTML code to put a webcam onto a webpage??
: Or is that in Javascript?
:
: Any help will be greatly appreciated!!!!!!!!
:

You mean a live webcam, or just load a picture every time the page is refreshed. Either way it involves some server Side scripting ... although ... you could have the webcam put a picture at a specific place (always same name) and then use javascript to refresh page every so often. As for live stuff, you need some sort of plugin for that, a JavaApplet maybe, or maybe a RealMedia or QuickTime thingy
Report
Re: Is there any HTML code for a webcam????? Posted by otthitterSLC on 16 Jan 2002 at 1:16 PM
: : Is there any HTML code to put a webcam onto a webpage??
: : Or is that in Javascript?
: :
: : Any help will be greatly appreciated!!!!!!!!
: :
:
: You mean a live webcam, or just load a picture every time the page is refreshed. Either way it involves some server Side scripting ... although ... you could have the webcam put a picture at a specific place (always same name) and then use javascript to refresh page every so often. As for live stuff, you need some sort of plugin for that, a JavaApplet maybe, or maybe a RealMedia or QuickTime thingy
:
Is the refresh way easier? I have the code for that, but I just need the code to make the webcam visible.... I'm thinking that I'd probably do the refresh way, it would probably make the page load faster and everything... Do you know the code for it? THANK YOU VERY MUCH FOR THAT HELP!!!
Report
Re: Is there any HTML code for a webcam????? Posted by iDaZe on 16 Jan 2002 at 2:28 PM
: Is the refresh way easier? I have the code for that, but I just need the code to make the webcam visible.... I'm thinking that I'd probably do the refresh way, it would probably make the page load faster and everything... Do you know the code for it? THANK YOU VERY MUCH FOR THAT HELP!!!
:
Ok, say you named the document webcam.html
<html>
  <head>
    <title>
      Webcam
    </title>
    <meta http-equiv='refresh' content='15; url=webcam.html'>
  </head>
  <body>
    <div align='center'>
      <img src='location of picture made by webcam'>
    </div>
  </body>
</html>

this code should refresh the page every 15 seconds (value is adjusted with content)
All you have to do now is have the webcam take and store a picture every few seconds (in this case 15)

This is the easiest way I can think of, although if you want a real live webcam experience, you need some sort of streaming technology
Report
Re: Is there any HTML code for a webcam????? Posted by otthitterSLC on 22 Jan 2002 at 1:41 PM
: : Is the refresh way easier? I have the code for that, but I just need the code to make the webcam visible.... I'm thinking that I'd probably do the refresh way, it would probably make the page load faster and everything... Do you know the code for it? THANK YOU VERY MUCH FOR THAT HELP!!!
: :
: Ok, say you named the document webcam.html
:
: <html>
:   <head>
:     <title>
:       Webcam
:     </title>
:     <meta http-equiv='refresh' content='15; url=webcam.html'>
:   </head>
:   <body>
:     <div align='center'>
:       <img src='location of picture made by webcam'>
:     </div>
:   </body>
: </html>
: 

: this code should refresh the page every 15 seconds (value is adjusted with content)
: All you have to do now is have the webcam take and store a picture every few seconds (in this case 15)
:
: This is the easiest way I can think of, although if you want a real live webcam experience, you need some sort of streaming technology
:
:
:
:Thank you!!
Report
Re: Is there any HTML code for a webcam????? Posted by otthitterSLC on 28 Jan 2002 at 5:21 PM
: : : Is the refresh way easier? I have the code for that, but I just need the code to make the webcam visible.... I'm thinking that I'd probably do the refresh way, it would probably make the page load faster and everything... Do you know the code for it? THANK YOU VERY MUCH FOR THAT HELP!!!
: : :
: : Ok, say you named the document webcam.html
: :
: : <html>
: :   <head>
: :     <title>
: :       Webcam
: :     </title>
: :     <meta http-equiv='refresh' content='15; url=webcam.html'>
: :   </head>
: :   <body>
: :     <div align='center'>
: :       <img src='location of picture made by webcam'>
: :     </div>
: :   </body>
: : </html>
: : 

: : this code should refresh the page every 15 seconds (value is adjusted with content)
: : All you have to do now is have the webcam take and store a picture every few seconds (in this case 15)
: :
: : This is the easiest way I can think of, although if you want a real live webcam experience, you need some sort of streaming technology
: :
: :
: :
: :Thank you!!
:
:
:Do you happen to know how to do the streaming technology? Is it just coding or what? If it's code do you know it? Thanks for you help!!!



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.