blob: e0d711eabd0f1527f2685b6c659b8c31371e7758 (
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
|
<?php
$title = "Konzert 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 -->
<h1>Gospelkonzert 2011</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/konzerte/Gospelkonzert2011.avi" type="video/x-msvideo" mmedia="(max-width: 719px) AND (min-width: 480px)">
</video>
</div>
</div> <!-- /.row -->
<div class="row">
<h1>Gospelkonzert 2013</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/konzerte/Gospelkonzert2013.mp4" type="video/mp4" mmedia="(max-width: 719px) AND (min-width: 480px)">
</video>
</div>
</div> <!-- /.row -->
<div class="row">
<h1>Gospelkonzert 2015</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/konzerte/Gospelkonzert2015.mkv" type="video/webm" mmedia="(max-width: 719px) AND (min-width: 480px)">
</video>
</div>
</div> <!-- /.row -->
<div class="row">
<h1>Gospelkonzert 2016</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/konzerte/Gospelkonzert2016.mp4" type="video/mp4" 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)">
-->
|