mrfrys-node-server/views/stuff/video.ejs
2019-10-26 20:42:34 +02:00

25 lines
571 B
Text

<html>
<body bgcolor="#212127">
<head>
<title><%= fname %></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.6" />
<style>
body {
font: normal 14px Verdana;
color: #999999;
}
</style>
</head>
<center>
<h2>
<%= fname %>
</h2>
<video id="videoPlayer" controls muted="muted" autoplay>
<source src="http://localhost:8080<%= path %>?stream=true" type="video/mp4">
</video>
</center>
</body>
</html>