Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Audio Boundary Detection</title> | |
| <link | |
| rel="stylesheet" | |
| href="{{ url_for('static', filename='styles.css') }}" | |
| /> | |
| </head> | |
| <body class="page"> | |
| <div class="container"> | |
| <div> | |
| <h1 class="title">Audio Boundary Detection</h1> | |
| <form | |
| action="/predict" | |
| method="post" | |
| enctype="multipart/form-data" | |
| class="upload-form" | |
| > | |
| <label for="file" class="file-label">Upload an audio file:</label> | |
| <input | |
| type="file" | |
| name="file" | |
| accept=".wav" | |
| required | |
| class="file-input" | |
| /> | |
| <button type="submit" class="submit-button">Analyze</button> | |
| </form> | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |