mirror of https://bitbucket.org/ausocean/av.git
23 lines
740 B
HTML
23 lines
740 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Audio Player</title>
|
|
<script type="text/javascript" src="pcm-player.min.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.1.3/css/bootstrap.min.css"
|
|
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="jumbotron">
|
|
<div class="container-fluid">
|
|
<input type="file" id="input">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |