blob: 7f1c3b386583a8c0fcc1ad5b7ae54232f82d1a51 (
plain)
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
|
<?php
$title = "Videos";
$class_konzert = '';
$class_index= '';
$class_proben= '';
$class_chor= '';
$class_video= 'class="active"';
require_once __DIR__ . '/header.php';
?>
<div class="container">
<!--div class="row">
<h1>The River is flowing</h1>
<div align="center" class="embed-responsive embed-responsive-16by9">
<video controls class="embed-responsive-item" preload="metadata">
<source src=https://static.gospeladlershof.de/videos/theriverisflowing.mp4 type=video/mp4>
</video>
</div>
</div--> <!-- /.row -->
<div class="row">
<div class="alert alert-info" role="alert">
<p><span class="glyphicon glyphicon-facetime-video"></span> Zu den Videos mit besserer Qualität geht es hier lang: <a href="/hq-video.php"><u><?php echo htmlentities(">>Klick<<");?></u></a>.</p>
</div>
<h1>King of Kings</h1>
<div align="center" class="embed-responsive embed-responsive-16by9">
<video controls class="embed-responsive-item" preload="metadata">
<source src="https://static.gospeladlershof.de/videos/2016/King of Kings (480).mp4" type="video/mp4" mmedia="(max-width: 719px) AND (min-width: 480px)">
<source src="https://static.gospeladlershof.de/videos/2016/King of Kings (480).webm" type="video/webm" mmedia="(max-width: 719px) AND (min-width: 480px)">
</video>
</div>
</div> <!-- /.row -->
<div class="row">
<h1>Jesus is my Salvation</h1>
<div align="center" class="embed-responsive embed-responsive-16by9">
<video controls class="embed-responsive-item" preload="metadata">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (480).mp4" type="video/mp4" mmedia="(max-width: 719px) AND (min-width: 480px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (480).webm" type="video/webm" mmedia="(max-width: 719px) AND (min-width: 480px)">
</video>
</div>
</div> <!-- /.row -->
<div class="row">
<h1>Jesus on the Mainline</h1>
<div align="center" class="embed-responsive embed-responsive-16by9">
<video controls class="embed-responsive-item" preload="metadata">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus on the Mainline (480).mp4" type="video/mp4" mmedia="(max-width: 719px) AND (min-width: 480px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus on the Mainline (480).webm" type="video/webm" mmedia="(max-width: 719px) AND (min-width: 480px)">
</video>
</div>
</div> <!-- /.row -->
</div> <!-- /container -->
<?php
require_once __DIR__ . '/footer.php';
?>
<!--
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (320).mp4" type="video/mp4" media="(max-width: 479px) AND (min-width: 320px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (720).mp4" type="video/mp4" media="all and (min-width: 720px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (320).webm" type="video/webm" media="(max-width: 479px) AND (min-width: 320px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus is my Salvation (720).webm" type="video/webm" media="all and (min-width: 720px)">
<source src="https://static.gospeladlershof.de/videos/2016/King of Kings (320).mp4" type="video/mp4" media="(max-width: 479px) AND (min-width: 320px)">
<source src="https://static.gospeladlershof.de/videos/2016/King of Kings (720).mp4" type="video/mp4" media="all and (min-width: 720px)">
<source src="https://static.gospeladlershof.de/videos/2016/King of Kings (320).webm" type="video/webm" media="(max-width: 479px) AND (min-width: 320px)">
<source src="https://static.gospeladlershof.de/videos/2016/King of Kings (720).webm" type="video/webm" media="all and (min-width: 720px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus on the Mainline (320).mp4" type="video/mp4" media="(max-width: 479px) AND (min-width: 320px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus on the Mainline (720).mp4" type="video/mp4" media="all and (min-width: 720px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus on the Mainline (320).webm" type="video/webm" media="(max-width: 479px) AND (min-width: 320px)">
<source src="https://static.gospeladlershof.de/videos/2016/Jesus on the Mainline (720).webm" type="video/webm" media="all and (min-width: 720px)">
-->
|