To watch your surveillance content if the Stream to Web Server broadcasting method is used, you have to point your Internet browsers to the address like: http://yourname.web2cam.com, which is your personal page on the PY Software web server.
 
If the Remote Access broadcasting method is used, the Active WebCam program must be installed on the viewer's computer in order to watch the camera. See more info about how to connect to the camera from remote computer using the remote access.
 
If the HTTP Server method is used, viewers type IP address and HTTP port of surveillance computer in the Internet browser (for example: http://63.236.73.147:8080).
 
If you want to connect to your camera from within local area network, open Internet Browser, and just type IP address of camera's computer and camera's port.
 
If you want to connect to your camera from outside local area network or from Internet, you have to know external IP address of your local area network, which can be defined at: http://www.whatismyip.com
 
Open Internet Browser, and type external IP address of surveillance computer and camera's port. If your network uses firewall, make sure that the port and IP address of camera's computer are open on the firewall. Please refer to the router configuration section in the frequently asked questions.
 
When viewers connect to HTTP server, it shows a "default" web page. This web page contains special code that is constantly downloads image from surveillance computer and simulates live video.
 
If the FTP Upload broadcasting method is used, viewers open camera's web page on a web server. This web server can be ordered from any web hosting company or from PY Software. Camera's web page must be created and uploaded to this web server. This page contains special code that is constantly downloads image from web server and simulates live video.
 
You can prepare the WebCam web page using any HTML editor you like.
Fortunately, Active WebCam has own tool to prepare simple WebCam web page.
 
Web Page Creation Wizard
To open the Web Page Creation Wizard, select Create Web Page from the Tools menu.
 
Web Page Creation Wizard helps you to specify title for your web page and change other attributes, such as background and text color, upper and lower captions.
 
Web Page Creation Wizard creates the web page HTML file, and uploads page's files to a folder or to an FTP server where your web page must be.
 
Your web page folder must contain the WebCam_Viewer.class file. This file uploads captured images from Web Camera and shows them in Internet browser.
 
How to add WebCam to own HTML text
Just add the following code to your HTML text:
 
<APPLET CODE="WebCam_Viewer.class"
  WIDTH=640 HEIGHT=480>
  <PARAM NAME="COLOR" VALUE="#00FF00">
  <PARAM NAME="IMAGE" VALUE="capture0.jpg">
  <PARAM NAME="BORDER" VALUE="ON">
</APPLET>Java Applet Parameters
Java Applet displays captured images up to 20 frames per second. Unfortunately not all Web Browsers support Java Applets, also most of Pocket PCs don't have Java Engine.
 
Parameter: Description:
COLOR Defines applet's background color. The color value is a six digit hexadecimal RGB specification preceded by the pound (#) sign. The first two digits indicate the red value, the second two digits indicate the green value, and the last two digits indicate the blue value. The range for each color value is 00 to FF inclusive.
 
Modify the COLOR parameter according to the color of your web page.
 
Example:
<!-- red background -->
<PARAM NAME="COLOR" VALUE="#FF0000">
IMAGE Defines file name of captured image, which is defined in the Image Name box. See Image Name for more info.
 
Example:
<PARAM NAME="IMAGE" VALUE="Cam.jpg">
BORDER If value is "ON" applet draws frame around image. If value is "OFF", applet just displayes the captured image.
 
Example:
<PARAM NAME="BORDER" VALUE="OFF">
 
How to create WebCam page with Actual Drawing
In the Actual Drawing program:<APPLET CODE="WebCam_Viewer.class"
  WIDTH=640 HEIGHT=480>
  <PARAM NAME="COLOR" VALUE="#00FF00">
  <PARAM NAME="IMAGE" VALUE="capture0.jpg">
  <PARAM NAME="BORDER" VALUE="ON">
</APPLET> 
Displaying Still Images on Web Page
If you don't want to use the Java applet on your web page to display webcam, it is easy to configure your web page to display captured image.
 
This method doesn't need any special technologies like Java Engine and it works with any Web browser, but frame rate cannot be higher than 1 frame per second.
 
Use a tag like this to display the image:
 
<IMG WIDTH=240 HEIGHT=180 SRC="capture0.jpg">
 
Change the SRC parameter according to value in the Image Name box in the Internet Setting dialog box.
 
To refresh the image, add a tag like this to the <Head> section of your web page:
 
<META HTTP-EQUIV="REFRESH" CONTENT="10">
 
This will cause Internet browser to refresh page every 10 seconds. Specify this value to the same as your broadcasting frame rate and your viewers will see an updated image right away when it has been captured.
 
 
 
 
Copyright© PY Software. All rights reserved.
www.pysoft.com
 
This help has been created using Actual Drawing™.
Watching Broadcasting