-
Notifications
You must be signed in to change notification settings - Fork 0
/
streaming.php
57 lines (38 loc) · 1.25 KB
/
streaming.php
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
<?php
include_once "inclusions.php";
start_html("24 ore: Streaming live",TRUE);
make_header(true, "current");
?>
<?php
start_box("24 ore: streaming live");
$test = TRUE;
if ( $test == FALSE || isset( $_GET["test"] ) ) echo '<div id="score"></div>';
?>
<div class="toggle" id="toggle_quality">
<a onclick="toggle(this)" id="tab_low" class="active">Bassa qualità</a>
<a onclick="toggle(this)" id="tab_hi">Alta qualità</a>
</div>
<center id="low_quality">
<video id="my_video_1" class="video-js vjs-default-skin" width="800" height="450" controls
preload="auto" poster="images/subotto2.jpg"
data-setup="{}">
<?php
echo '<source src="http://soyuz.sns.it:8001/low" type="video/x-flv">';
?>
</video>
</center>
<center id="hi_quality" class="hidden">
<video id="my_video_1" class="video-js vjs-default-skin" width="800" height="450" controls
preload="auto" poster="images/subotto2.jpg"
data-setup="{}">
<?php
echo '<source src="http://soyuz.sns.it:8000/hi" type="video/x-flv">';
?>
</video>
</center>
<script>loadtoggle("quality")</script>
<p>Link diretto allo streaming (<a href="http://soyuz.uz.sns.it:8001/low">bassa qualità</a>, <a href="http://soyuz.uz.sns.it:8000/hi">alta qualità</a>).</p>
<?php
end_box();
end_html();
?>