mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
37 lines
803 B
Text
37 lines
803 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;
|
|
}
|
|
video {
|
|
width: 100%
|
|
}
|
|
</style>
|
|
</head>
|
|
<center>
|
|
<h2>
|
|
<%= fname %>
|
|
</h2>
|
|
<image
|
|
style="width:auto; max-height: 400px;"
|
|
onerror="this.style.display='none'"
|
|
src=<%= url + albumArt %>
|
|
/>
|
|
<audio id="audioPlayer" controls style="width:100%">
|
|
<source src="<%= url %><%= path %>?stream=true" type=<%= contentType %>>
|
|
</audio>
|
|
</center>
|
|
</body>
|
|
<script>
|
|
console.log('a')
|
|
</script>
|
|
</html>
|