File size: 851 Bytes
384e020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<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>