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.

27 lines
872B

  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. <label>Encoding</label>
  17. <select id="encoding">
  18. <option value="u-law">u-law</option>
  19. <option value="PCM">PCM</option>
  20. </select><br/><br/>
  21. <input id="audioFileChooser" name="audioFileChooser" type="file" accept="audio/*" multiple>
  22. <div id="outputFileHolder"></div>
  23. </form>
  24. <script type="text/javascript" src="wav2sketch.js"></script>
  25. </body>
  26. </html>