mirror of https://bitbucket.org/ausocean/av.git
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<!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">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
|
|
<body class="d-flex flex-column">
|
|
<div id="page-content">
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<footer id="sticky-footer" class="footer py-4 bg-dark text-white-50">
|
|
<div class="container text-center">
|
|
<small>©2019 Australian Ocean Laboratory Limited (AusOcean) (<a rel="license"
|
|
href="https://www.ausocean.org/license">License</a>)</small>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |