Questa è una vecchia versione del documento!
Qui di seguito, trovate il sorgente dello script relativo all'estrazione delle immagini delle webcam del sito Autostrade.
Per il momento lo script genera il flusso video (in realtà è un javascript che scorre 4 foto) oppure una immagini still.
Le sorgenti video vengono aggiornate da autostrade ogni 5 minuti.
<?php /* ::::::::::G.A.W. Grabbing autostrade Webcam :::V.1.0::::::: ::::::::::Realizzato da Marco Tricarico 08/2008 :::::::::: Usage: http://url_scripts/index.php?cam=X&mod=Y&size=Z Dove X=numero di id della webcam, per esempio 103 Y è la modalità che può essere still (immagine fissa) oppure video (flusso video costruito su 4 foto Z è il valore che indica la taglia dell'immagine (Small 160×120, medium 320×240, large 640×480) se non viene specificata la taglia il sistema prende in considerazione la misura medium. E' in fase di sviluppo anche una modalità grab, che permette un output jpg per eventuali salvataggi.
Buona visione. */ $cam=$_GET[cam]; if($_GET[cam]==“”){die ('Specificare la webcam! <br>');} if($_GET[mod]==“”){die ('Specificare la modalità! <br>');} if($_GET[size]==“”){$height=“240”; $width=“320”;} if($_GET[size]==“small”){$height=“130”; $width=“160”;} if($_GET[size]==“medium”){$height=“260”; $width=“320”;} if($_GET[size]==“large”){$height=“520”; $width=“640”;} if ($cam < 100 ){$num_read=113; $num_read_video=112;} if ($cam >= 100 ){$num_read=114; $num_read_video=113;}
$url = “http://www.autostrade.it/autostrade/popupTelecamera.do?tlc=$cam”; $url_basic_jpg=“http://www.autostrade.it”; apro la connessione verso la url $fp = fopen( $url, 'r' ); $content = “”; while( !feof( $fp ) ) { produco il content leggendo la pag web
$buffer = trim( fgets( $fp, 4096 ) ); $content .= $buffer; }
individuo la posizione in cui viene prodotta la JSESSIONID $posizione=strpos($content,“/autostrade/FrameTelecamera;jsessionid”); se la posizione è vuota la cam non esiste o non riesco a raggiungerla if($posizione==“”){die(“La telecamera non risponde oppure potrebbe non esistere, verificare la connessione e il numero id della webcam”);} leggo tutta la stringa della JSESSIONID, mi serve per generare la prima img $img_incomplete=substr($content, $posizione,$num_read); leggo tutta la stringa, tranne l'ultimo valore, al quale darò i seguenti valori 1,2,3,4 $img_=substr($content, $posizione,$num_read_video);
if($_GET[mod]!=“still” && $_GET[mod]!=“video” && $_GET[mod]!=“grab”){die ('Modalità non supportata <br>');} if($_GET[mod]==“grab”){} if($_GET[mod]==“still”)
{ ?> <html> <head> <title>Telecamera id: <?php echo $cam;?></title> <meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1”> </head>
<body leftmargin=“0” topmargin=“0”>
px; height:<?php echo $height;?>px; z-index:1; “> <img src=”<?php echo $url_basic_jpg.$img_incomplete;?>“ name=foto width=”<?php echo $width;?>“ height=”<?php echo $height;?>“ alt=”<?php echo $cam;?>“>
px; height:<?php echo $height;?>px; z-index:1;”><img src=“http://www.infoanas.it/cam/logo.png” width=“<?php echo $width;?>” height=“<?php echo $height;?>” border=0>
</body>
</html> <?php }
if($_GET[mod]==“video”)
{ ?> <html> <head> <title>Telecamera id: <?php echo $cam;?></title> <meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1”> </head>
<body leftmargin=“0” topmargin=“0”>
<script language = JavaScript> var j=2; var t=1000; var idTime; var maxCicli = 50; var ciclo = 1;
preloading images var arrImg = new Array(); function preloadImg(imgName,imgSrc) { arrImg[imgName] = new Image(); arrImg[imgName].src = imgSrc; } preloadImg('1',“<?php echo $url_basic_jpg.$img_;?>1”); preloadImg('2',“<?php echo $url_basic_jpg.$img_;?>2”); preloadImg('3',“<?php echo $url_basic_jpg.$img_;?>3”); preloadImg('4',“<?php echo $url_basic_jpg.$img_;?>4”); function Load() { idTime=setTimeout(“Refresh()”,t); } function Refresh() { ciclo++; if (ciclo > maxCicli * 4) { return; } window.clearTimeout(idTime); document.images.foto.src = arrImg[j].src; if(j==4){ j=0; } j++; } </script>
px; height:<?php echo $height;?>px; z-index:1; “> <img src=”<?php echo $url_basic_jpg.$img_incomplete;?>“ name=foto width=”<?php echo $width;?>“ height=”<?php echo $height;?>“ alt=”<?php echo $cam;?>“ onLoad=“Load();”>
px; height:<?php echo $height;?>px; z-index:1;”><img src=“http://www.infoanas.it/cam/logo.png” width=“<?php echo $width;?>” height=“<?php echo $height;?>” border=0>
</body> </html> <?php } ?>