All AbelCam functionality has been terminated October 8th 2019
 
 
 
Navigation

Opinions
AbelCam has been working great for me.
The only time I ever reboot on the webcam PC is when MS sends down an update patch.
I think a big problem with some other webcam software is memory leaks. You seem to have those plugged.

The pro version is definitely worth the 20 Euros

 Harry Andrews  more>>

 
AbelCam 2.3.8 and up come with a SilverLight applet. The applet can be used to either show one camera or all cameras active in AbelCam.
  • One Camera

    <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
    		<param name="source" value="http://localhost:8080/silver/AbelSilver.xap"/>
    		<param name="onerror" value="onSilverlightError" />
    		<param name="background" value="white" />
    		<param name="minRuntimeVersion" value="2.0.31005.0" />
    		<param name="initParams" value="ServerURL=http://localhost:8080,cam=0"  />
    		<param name="autoUpgrade" value="true" />
    		<a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
    		<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none"/>
    		</a>
    </object>
    

    Change URL and camera number to fit your requirements.
  • All Cameras

    For multiple cameras use the code above and leave the cam=x parameter. The applet will query the AbelCam server and list all active cameras.

Default for ServerURL is the server where the applet was loaded from.
You may store the SilverLight Applet AbelSilver.xap anywhere. If it's not located on the AbelCam server delivering the camera images, you must provide the ServerURL parameter.

The applet is also available from this server, you may use

<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
		<param name="source" value="http://www.abelcam.com/img/AbelSilver.xap"/>
		<param name="onerror" value="onSilverlightError" />
		<param name="background" value="white" />
		<param name="minRuntimeVersion" value="2.0.31005.0" />
		<param name="initParams" value="ServerURL=http://localhost:8080,cam=0"  />
		<param name="autoUpgrade" value="true" />
		<a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
		<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none"/>
		</a>
</object>