#!/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; } } } } an tablesJonathan McCrohan
aboutsummaryrefslogtreecommitdiffstats
path: root/dvb-s/OptusC1-156E
blob: 0e3e73b2b652d7e5620c39d46384af54da7c9bea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Optus C1 satellite 156E
# freq pol sr fec
S 12278000 H 30000000 2/3
S 12305000 H 30000000 2/3
S 12358000 H 27000000 2/3
S 12398000 H 27800000 3/4
S 12407000 V 30000000 2/3
S 12438000 H 27800000 3/4
S 12487000 V 27800000 3/4
S 12501000 H 29473000 3/4
S 12518000 H 27800000 3/4
S 12527000 V 30000000 3/4
S 12558000 H 27800000 3/4
S 12564000 H 29473000 3/4
S 12567000 V 27800000 2/3
S 12598000 H 27800000 3/4
S 12607000 V 29473000 3/4
S 12638000 H 27800000 3/4
S 12689000 H 27800000 3/4
S 12720000 V 30000000 3/4