Ver Mensaje Individual
  #9 (permalink)  
Antiguo 28/04/2009, 08:05
LSS
 
Fecha de Ingreso: marzo-2008
Mensajes: 13
Antigüedad: 16 años, 8 meses
Puntos: 0
Respuesta: Camara IP Wireless

Mira, este es el código para acceder a la web en una red local donde el servidor tienen l IP local 192.168.0.10.

Si quieres acceder desde un ordenador a través de Internet al “servidor de video”, tenderás que poner la IP publica que tenga asignado tu operador de Internet o si as montado lo del No-ip pondrás en nombre (dominio) que hayas registrado en no-ip.

Cuando lo configuras con el nombre (dominio) o con la IP publica que te asigna tu operador, las imágenes NO se pueden ver de3sde los ordenadores de tu red local.

<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>

<img src="h t t p : //192.168.0.10:8080/loading.jpg" class="webcam" id="webcam1" onmousedown="PTZMouseDown1(event)" width="320" height="240" alt="Live Stream" />
<script type="text/javascript">
<!--
currentCamera1= 1;
errorimg1= 0;
document.images.webcam1.onload = DoIt1;
document.images.webcam1.onerror = ErrorImage1;
function LoadImage1()
{
uniq1 = Math.random();
document.images.webcam1.src = "h t t p ://192.168.0.10:8080/cam_" + currentCamera1 + ".jpg?uniq="+uniq1;
document.images.webcam1.onload = DoIt1;
}
function PTZMouseDown1(e)
{
var IE = document.all?true:false;
var x,y;
var myx,myy;
var myifr = document.getElementById("_iframe-ptz");
tp = getElPos1();
myx = tp[0];
myy = tp[1];
if(IE){
var scrollX = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft;
var scrollY = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;
x = event.clientX - myx + scrollX;
y = event.clientY - myy + scrollY;
} else {
x = e.pageX - myx;
y = e.pageY - myy;
}
if (width_array[currentCamera1] > 0) x = Math.round((x * 400) / width_array[currentCamera1]);
if (height_array[currentCamera1] > 0) y = Math.round((y * 300) / height_array[currentCamera1]);
if (x > 400) x = 400;
if (y > 300) y = 300;
if (myifr != null) myifr.src = "192.168.0.10:8080/ptz?src=" + currentCamera1 + "&moveto_x=" + x + "&moveto_y=" + y +"";
return true;
}
function getElPos1()
{
el = document.images.webcam1;
x = el.offsetLeft;
y = el.offsetTop;
elp = el.offsetParent;
while(elp!=null)
{ x+=elp.offsetLeft;
y+=elp.offsetTop;
elp=elp.offsetParent;
}
return new Array(x,y);
}
function ErrorImage1()
{
errorimg1++;
if (errorimg1>3){
document.images.webcam1.onload = "";
document.images.webcam1.onerror = "";
document.images.webcam1.src = "offline.jpg";
}else{
uniq1 = Math.random();
document.images.webcam1.src = "192.168.0.10:8080/cam_" + currentCamera1 + ".jpg?uniq="+uniq1;
}
}
function DoIt1()
{
errorimg1=0;
window.setTimeout("LoadImage1();", 40);
}
//-->
</script>



P.D.
Donde pone "h t t p : //192.168.0.10" , quítale los espacios a "h t t p : " y déjalo así "http:"