Luisteraars Piek vast houden tot reset

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Jan Willem van der Wulp

Jan Willem van der Wulp

18/01/2014 13:38:45
Quote Anchor link
Hoi,

Ik heb een script van internet wat het aantal luisteraars laat zien van diverse shoutcast streams. Het werkt prima, alleen wil een kleine toevoeging maken.

Wil graag de piek laten weergeven en vast houden (tenzij die wordt overschreden)en moet ook weer op nul te zetten zijn. Kan dit ook zonder database???

Hier onder het huidige script..

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232

<?php

$station_name
= "Stationsnaam";

$refresh = "15";  // Page refresh time in seconds. Put 0 for no refresh
$timeout = "1"; // Number of seconds before connecton times out - a higher value will slow the page down if any servers are offline

/* ----------- Server configuration ---------- */

// Note: dont include http://
// Main server: The song title will be taken from this server


$ip[1] = "123.456.789";
$port[1] = "8000";

/* Relays: Below you can enter more relays / restreams / channels / competitors or anything else */

$ip[2] = "123.456.789";
$port[2] = "8000";

$ip[3] = "123.456.789";
$port[3] = "8000";

$ip[4] = "123.456.789";
$port[4] = "8000";

/* ----- No need to edit below this line ----- */
/* ------------------------------------------- */

$servers = count($ip);
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php
if ($refresh != "0")
    {

    print "<meta http-equiv=\"refresh\" content=\"$refresh\">\n";
    }

print "<title>$station_name SHOUTcast statistieken</title>\n";
?>

<style type="text/css">
<!--
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #333333;
    margin: 5px;
    background-color: #fff;
}
div {
    background-color: #fef9f2;
    border: 1px solid #000;
    padding: 4px;
    margin-bottom: 5px;
    width: 425px;
}
div div {
    margin: 5px;
    border: 0;
    background-color: #fef9f2;
    margin: 5px;
    margin-bottom: 0;
}
h1 {
    font-size: 22px;
    color: #000;
    margin: 2px;
}
h2 {
    font-size: 14px;
    color: #336666;
    margin: 2px;
}
p {
    margin: 5px;
}
a {
    color: #666699;
    text-decoration: none;
}
a:hover {
    color: #993333;
}
div.line {
    border-bottom: 1px dashed #000;
    height: 3px;
    font-size: 1px;
    margin-top: 0;
}
div#blu, div#blu div {
    background-color: #b2bfc0;
}
.red {
    color: #CC0000;
    font-weight: bold;
}
.small {
    font-size: 10px;
}
-->
</style>
</head>
<body>
<?php
$i
= "1";
while($i<=$servers)
    {

    $fp = @fsockopen($ip[$i],$port[$i],$errno,$errstr,$timeout);
    if (!$fp)
        {

        $listeners[$i] = "0";
        $msg[$i] = "<span class=\"red\">ERROR [Connection refused / Server down]</span>";
        $error[$i] = "1";
        }

    else
        {
        fputs($fp, "GET /7.html HTTP/1.0\r\nUser-Agent: Mozilla\r\n\r\n");
        while (!feof($fp))
            {

            $info = fgets($fp);
            }

        $info = str_replace('<HTML><meta http-equiv="Pragma" content="no-cache"></head><body>', "", $info);
        $info = str_replace('</body></html>', "", $info);
        $stats = explode(',', $info);
        if (empty($stats[1]) )
            {

            $listeners[$i] = "0";
            $msg[$i] = "<span class=\"red\">ERROR [There is no source connected]</span>";
            $error[$i] = "1";
            }

        else
            {
            if ($stats[1] == "1")
                {

                $song[$i] = $stats[6];
                $listeners[$i] = $stats[0];
                $max[$i] =  $stats[3];
                $bitrate[$i] = $stats[5];
                $peak[$i] = $stats[2];
                if ($stats[0] == $max[$i])
                    {

                    $msg[$i] .= "<span class=\"red\">";
                    }

                $msg[$i] .= "Server is aan op $bitrate[$i] kbps met $listeners[$i] van de $max[$i] luisteraars";
                if ($stats[0] == $max[$i])
                    {

                    $msg[$i] .= "</span>";
                    }

                $msg[$i] .= "\n    <p><b>Luisteraars piek:</b> $peak[$i]";
                }

            else
                {
                $listeners[$i] = "0";
                $msg[$i] = "    <span class=\"red\">ERROR [Cannot get info from server]</span>";
                $error[$i] = "1";
                }
            }
        }

    fclose($fp);
    $i++;
    }

$total_listeners = array_sum($listeners) ;
print "<div id=\"blu\">\n  <div style=\"text-align: center;\">\n  <h1>Er zijn $total_listeners mensen aan het luisteren</h1>\n  </div>\n</div>\n<div>\n  

<div>\n    <p><b>Huidig nummer:</b> $song[1]</p>\n  </div>\n</div>\n<div>\n"
;
$i = "1";
while($i<=$servers)
    {

        print "  <div>\n";
if ($max[$i] > 0)
    {

    $percentage = round(($listeners[$i] / $max[$i] * 100));
    $timesby = (300 / $max[$i]);
    $barlength = round(($listeners[$i] * "$timesby"));
    }

if ($error[$i] != "1")
    {

?>

    <table width="390"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="25%" align="center"><b><a href="http://<?php print $ip[$i] . ":" . $port[$i]; ?>" target="_blank">Server <?php print $i ?

><
/a></b>&nbsp;&nbsp;</td>
        <
td width="75%" colspan="3" bgcolor="#eeeeee"><img src="<?php if ($percentage == "100") { print "red-"; } ?>bar.gif" width="<?php print

$barlength ?>"
height="12" alt="The server is at <?php print $percentage; ?>% capacity"></td>
      <
/tr>
      <
tr>
        <
td width="25%">&nbsp;</td>
        <
td width="25%">0%</td>
        <
td width="25%" align="center">50%</td>
        <
td width="25%" align="right">100%</td>
      <
/tr>
    <
/table>
[
code]<?php
    }
else
    {
?>

    <table width="390"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="25%" align="center"><b><a href="http://<?php print $ip[$i] . ":" . $port[$i]; ?>" target="_blank">Server <?php print $i ?

><
/a></b>&nbsp;&nbsp;</td>
        <
td width="75%" colspan="3" bgcolor="#eeeeee">&nbsp;</td>
      <
/tr>
      <
tr>
        <
td width="25%">&nbsp;</td>
        <
td width="25%">0%</td>
        <
td width="25%" align="center">50%</td>
        <
td width="25%" align="right">100%</td>
      <
/tr>
    <
/table>
[
code]<?php
    }
print "    <p><b>Status:</b> $msg[$i]</p>\n  </div>\n  <div class=\"line\"> </div>\n";
    $i++;
    }

print "</div>\n";
$time_difference = "0"; // BST: 1 GMT: 0
$time_difference = ($time_difference * 60 * 60);
$time = date("h:i", time() + $time_difference);
$date = date("j F Y", time() + 0);
print "<div>\n  <div>\n    <p><b>Live SHOUTcast statistieken:</b> $time - $date</p>\n  </div>\n</div>\n";
?>



</body>
</html>
 
Er zijn nog geen reacties op dit bericht.



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.