You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wav2sketch.html 703B

123456789101112131415161718192021
  1. <html>
  2. <head>
  3. <title>wav2sketch</title>
  4. </head>
  5. <body>
  6. <h1>Teensy Audio Wav2Sketch Utility</h1>
  7. <p>Upload an audio file to convert it into Teensy audio format.</p>
  8. <form>
  9. <label>Output sample rate</label>
  10. <select id="sampleRate">
  11. <option value="auto">Auto</option>
  12. <option value="44100">44100</option>
  13. <option value="22050">22050</option>
  14. <option value="11025">11025</option>
  15. </select><br/><br/>
  16. <input id="audioFileChooser" name="audioFileChooser" type="file" accept="audio/wav" multiple>
  17. <div id="outputFileHolder"></div>
  18. </form>
  19. <script type="text/javascript" src="wav2sketch.js"></script>
  20. </body>
  21. </html>