#!/usr/bin/perl use strict; use vars qw ($file $DELAY); ########## CONFIG $file = "lcd4linux"; # .png is appended $DELAY = 0; # delay in seconds # if delay is zero, file is sent when modified. ################# use CGI qw/:push -nph/; $| = 1; my ($mtime, $nmtime, $size, $nsize); (undef, undef, undef, undef, undef, undef, undef, $size, undef, $mtime) = stat "$file.png"; print multipart_init(-boundary=>'----------------here we go!'); while (1) { print multipart_start(-type=>'image/png'); undef $/; open(IN, "$file.png") or die("Can't read '$file.png'"); $_ = ; print $_; close(IN); print multipart_end; if ($DELAY) { sleep $DELAY; } else { W: while (1) { # sleep(1); (undef, undef, undef, undef, undef, undef, undef, $nsize, undef, $nmtime) = stat "$file.png"; if($mtime != $nmtime || $size != $nsize) { $mtime = $nmtime; $size = $nsize; last W; } } } } n tablesJonathan McCrohan
aboutsummaryrefslogtreecommitdiffstats
path: root/isdb-t/br-sc-Joinville (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2015-11-22Update Comhem muxes in SwedenBenjamin Larsson1-29/+91
2015-11-22Update Teracom transmitters in SwedenBenjamin Larsson116-2451/+1802
2015-11-22Add Teracom transmitters in Sweden.Benjamin Larsson374-0/+3530
2015-07-06Add new cities to Brazilian ISDB-T listsMauro Carvalho Chehab75-0/+2922
2015-07-06Rename ISDB-T table for Gama cityMauro Carvalho Chehab1-0/+0
2015-07-06Update Brazilian ISDB-T tablesMauro Carvalho Chehab267-1019/+9052