mirror of https://bitbucket.org/ausocean/av.git
44 lines
1.9 KiB
HTML
44 lines
1.9 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">
|
|
</head>
|
|
|
|
<body style="height: 100%" onload="load();">
|
|
<div class="card m-auto" style="width: 40rem;">
|
|
<div class="card-body">
|
|
<div class="container-fluid">
|
|
URL: <input type="text" id="url" class="url mb-3 mx-3" onchange="load();"><button onclick="load();">Load</button>
|
|
</div>
|
|
<div class="container-fluid">
|
|
<a id="link" href=""></a>
|
|
</div>
|
|
<div style="height: 1rem">
|
|
</div>
|
|
<div class="container-fluid">
|
|
<div class="form-group">
|
|
<input class="form-control-file" type="file" id="fileinput" onchange="playFile();">
|
|
</div>
|
|
</div>
|
|
<div class="container-fluid">
|
|
<audio class="mx-auto" 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 fixed-bottom py-4 bg-dark text-white-50" style="width: 100%;">
|
|
<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> |