mirror of
https://github.com/CKegel/Web-SSTV.git
synced 2025-06-02 09:30:23 +00:00
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
<!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> |