[Javascript] Camera IP en streaming

iceman306 Messages postés 95 Statut Contributeur -  
 stio -
Bonjour!

J'aurais besoin d'un peu d'aide avec le javascript.

J'aimerais mettre en streaming une camera IP.

Quelqu'un connait un script qui permet de faire sa? Ou comment faire pour le créer?

Merci d'avance!
A voir également:

1 réponse

stio
 
<script language="JavaScript">
<!--
if ((navigator.appName == "Microsoft Internet Explorer")&&(navigator.platform != "MacPPC"))
{
document.write("<OBJECT ID=\"VAMCtrl\" WIDTH=362 HEIGHT=318");
document.write(" CLASSID=CLSID:A93B47FD-9BF6-4DA8-97FC-9270B9D64A6C");
document.write(" CODEBASE=\"/plugin/h263ctrl.cab#version=1,7,0,22\">");
document.write("<PARAM NAME=\"Url\" VALUE=\"/cgi-bin/video.vam\">");
document.write("<PARAM NAME=\"VSize\" VALUE=\"CIF\">");
document.write("<PARAM NAME=\"RemoteIP\" VALUE=\"503359680\">");
document.write("<PARAM NAME=\"RemotePort\" VALUE=\"8481\">");
document.write("<PARAM NAME=\"RemoteID\" VALUE=\"4712\">");
document.write("<PARAM NAME=\"DigitalZoomEdit\" VALUE=\"false\">");
document.write("<PARAM NAME=\"Language\" VALUE=\"EN\">");
document.write("</OBJECT>");
}
//-->
</script>
1