Differenze

Queste sono le differenze tra la revisione selezionata e la versione attuale della pagina.

Link a questa pagina di confronto

Prossima revisione
Revisione precedente
telecamere_di_tutte_le_autostrade [2008/08/20 17:17] – created m.tricaricotelecamere_di_tutte_le_autostrade [2014/07/03 14:57] (versione attuale) – modifica esterna 127.0.0.1
Linea 5: Linea 5:
 Le sorgenti video vengono aggiornate da autostrade ogni 5 minuti. Le sorgenti video vengono aggiornate da autostrade ogni 5 minuti.
  
 +P.S. Mi sono accorto che Explorer 6 ha difficoltà con le png, quindi lo script è compatibile, per il momento con mozilla e explorer 7
  
- +**Sorgente di G.A.W. Grabbing Autostrade Webcam V.1.0** ==> http://www.infoanas.it/cam/GAW.zip
- +
- +
-<?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 160X120, medium 320X240, large 640X480) 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"> +
-<div id="Layer3" style="position:absolute; width:<?php echo $width;?>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;?>"> +
-</div> +
-<div id="Layer4" style="position:absolute; width:<?php echo $width;?>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></div> +
- +
- +
-</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> +
-<div id="Layer3" style="position:absolute; width:<?php echo $width;?>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();"> +
-</div> +
-<div id="Layer4" style="position:absolute; width:<?php echo $width;?>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></div> +
- +
-</body> +
- +
-</html> +
- +
-<?php  +
-+
-?>+