-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<!--
Copyright 2024, jan-ale on github.
Code licensed under GPL 3.0 or any later version.
-->
<html>
<head>
<title>Bytebeat player</title>
<link rel="icon" type="image/png" href="favicon.png">
<meta name="color-scheme" content="light dark"> <!-- i love this -->
</head>
<body>
<h1>Bytebeat <s>player</s> parser (bad)</h1>
<noscript><h2>requires javascript to run!</h2></noscript>
<textarea id="code"></textarea>
<div><button id="compile">Compile</button></div>
<!--<details>
<summary>Options</summary>
<p>Samplerate: <input id="samplerate" type="number" min="0" value="8000"></p>
<p>Length: <input id="length" type="number" step="any" min="0" value="20"></p>
</details>-->
<details>
<summary>Compilation details</summary>
<div id="compdetails">
<p>has not compiled yet. if you already clicked the compile button, cause might be that the javascript didn't load.</p>
</div>
<hr>
</details>
<p>Want to report a bug/other thing? Do so at <a href="https://github.com/jan-ale/bytebeat-libre/issues">my github issues page</a>.</p>
<p>© Copyright 2024, jan-ale on github.</p>
<p>Code licensed under GPL 3.0 or any later version.</p>
<script src="player.js"></script>
</body>
</html>