-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdecode.html
43 lines (40 loc) · 1.53 KB
/
decode.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.colors.min.css">
<link rel="stylesheet" href="./style.css">
<title>Web-SSTV</title>
</head>
<nav class="container">
<ul>
<li><strong><a href="./index.html" class="contrast">Web SSTV</a></strong></li>
</ul>
<ul>
<li><a href="./encode.html">Encode</a></li>
<li><a href="./decode.html" class="contrast">Decode</a></li>
<li><a href="./learn.html">Learn</a></li>
</ul>
</nav>
<body>
<main class="container">
<center>
<h4><span class="pico-color-amber-200" id="decodeText">Waiting for Audio Feed...</span></h4>
<div id="previewArea" class="">
<canvas id="preview"></canvas>
</div>
<p>SSTV decoding is currently under development and not currently operational. Encountered an issue or unexpected behavior? Create an issue <a href="https://github.com/CKegel/Web-SSTV/issues">on GitHub</a>.</p>
</center>
</main>
<footer class="container">
<small>SSTV signal decoding and more encoding modes coming soon.</small>
<br>
<small><a href="https://github.com/CKegel/Web-SSTV/">Check out the project on Github</a></small>
<br>
<small>© <script>document.write(new Date().getFullYear())</script> Christian Kegel - Available under the MIT License</small>
</footer>
</body>
<script src="./decode.js"></script>
</html>