1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<title>Player example</title>
<link rel="preload" href="progress-player.js" as="script">
<link rel="preload" href="http://localhost:9092/serve/torrent/cover?torrent-id=4854922" as="image">
<!-- empty favicon -->
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
</head>
<body>
<h1>Progress Player</h1>
<progress-player src=" http://localhost:9092/serve/torrent?torrent-id=4854922&file-id=0"
coverart="http://localhost:9092/serve/torrent/cover?torrent-id=4854922" artist="Kendrick Lamar"
title="Not Like Us">
</progress-player>
<script src="progress-player.js"></script>
</body>
</html>
|