-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (94 loc) · 3.4 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>phystech.tv</title>
<meta charset="utf-8" />
<meta name="description" content="phystech.tv 24/7 live stream phystech.tv">
<meta property="og:title" content="phystech.tv" />
<meta property="og:description" content="phystech.tv 24/7 live stream phystech.tv" />
<meta property="og:image" content="https://phystech.tv/phystech.tv.logo.png" />
<link href="https://fonts.googleapis.com/css?family=Exo+2:700i" rel="stylesheet">
<link href="https://unpkg.com/video.js/dist/video-js.css" rel="stylesheet">
<!--
<link href="//vjs.zencdn.net/5.8/video-js.min.css" rel="stylesheet">
<script src="//vjs.zencdn.net/5.8/video.min.js"></script>
<script src="js/dash.all.js"></script>
<script src="js/videojs-dash.min.js"></script>
-->
<script src="https://unpkg.com/video.js/dist/video.js"></script>
<script src="//cdn.dashjs.org/latest/dash.all.debug.js"></script>
<script src="https://unpkg.com/videojs-contrib-dash/dist/videojs-dash.js"></script>
<style>
body {
background: black;
color: white;
margin: 0;
}
.player-dimensions {
margin: auto;
width: 120vh;
height: 72vh;
max-width: 100vw;
}
.header {
display:inline-block;
font-family:'Exo 2', sans-serif;
font-weight:700;
font-style:italic;
font-size:54px;
margin:1vh 0;
width:100%;
text-align:center
}
</style>
</head>
<body>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function (d, w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter48642635 = new Ya.Metrika({
id:48642635,
clickmap:true,
trackLinks:true,
accurateTrackBounce:true,
webvisor:true
});
} catch(e) { }
});
var n = d.getElementsByTagName("script")[0],
s = d.createElement("script"),
f = function () { n.parentNode.insertBefore(s, n); };
s.type = "text/javascript";
s.async = true;
s.src = "https://mc.yandex.ru/metrika/watch.js";
if (w.opera == "[object Opera]") {
d.addEventListener("DOMContentLoaded", f, false);
} else { f(); }
})(document, window, "yandex_metrika_callbacks");
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/48642635" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
<h1 class="header">phystech.tv</h1>
<div style="margin: 0vw;">
<video id="player" class="video-js vjs-default-skin vjs-big-play-centered" width="900" controls autoplay>
</video>
</div>
<script>
var player = videojs('#player');
player.src({ src: 'https://phystech.tv/dash/stream.mpd', type: 'application/dash+xml'});
player.src({ src: 'https://phystech.tv/hls/stream.m3u8', type: 'application/x-mpegURL'});
player.play();
</script>
<script type="text/javascript" src="//vk.com/js/api/openapi.js?153"></script>
<!-- VK Widget -->
<div id="vk_community_messages"></div>
<script type="text/javascript">
VK.Widgets.CommunityMessages(
"vk_community_messages",
164610353,
{disableExpandChatSound: "1",disableNewMessagesSound: "1",disableButtonTooltip: "1"});
</script>
</body>
</html>