av/cmd/audio-player/index.html

35 lines
1.3 KiB
HTML
Raw Normal View History

2019-07-18 06:41:52 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Audio Player</title>
<script type="text/javascript" src="pcm-to-wav.js"></script>
<script type="text/javascript" src="adpcm.js"></script>
<script type="text/javascript" src="main.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
2019-08-05 06:16:58 +03:00
<body style="height: 100%">
2019-08-05 06:09:55 +03:00
<div class="jumbotron">
<div class="container-fluid">
<input type="file" id="input">
</div>
<div class="container-fluid">
<audio controls="controls" id="audio">
Your browser does not support the <code>audio</code> element.
<source id="source" src="" type="audio/wav" />
</audio>
2019-07-18 06:41:52 +03:00
</div>
</div>
2019-08-05 06:09:55 +03:00
<footer id="sticky-footer" class="footer py-4 bg-dark text-white-50"
style="position: absolute; bottom: 0; width: 100%;">
<div class="container text-center">
<small>&copy;2019 Australian Ocean Laboratory Limited (AusOcean) (<a rel="license"
href="https://www.ausocean.org/license">License</a>)</small>
</div>
</footer>
</body>
2019-07-18 06:41:52 +03:00
</html>