videokamera -> wird webcam

Jup, genauso kann man's machen. Dann brauchst Du halt bloß noch ne entsprechende Software wie Webcam32 sowie webspace, wo der Upload per FTP erfolgt und schon bist Du sprichwörtlich im Bilde ;) .


Beispiel-Web-Code (JavaScript):
<html><head>
<title>ABC´s Webcam</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv=pragma content="no-cache">
</head>
<script language="JavaScript">
<!--
var t =30
function Start(){
document.visiongs.clock.value = t
timerID = setTimeout("Start()", 1000)
t = t-1
if (t==0){
location.reload();
}
}
// -->
</script>
<body onload="Start();" bgcolor="#FFFFFF" text="#000000" link="#000066" vlink="#000066">
<br>
<center><table WIDTH="454" HEIGHT="303" BACKGROUND="hintergrund.jpg" >
<tr>
<td>
<center><img SRC="http://www...../camshot.jpg" height=240 width=320><form name="visiongs"></center>
</td>
</tr>
</table></center>

<center>
<font face="arial" size="2">Refreshing in <input type="text" SIZE="2" name="clock"> seconds.</font></form>
</center></body></html>
 
Zurück