File size: 1,051 Bytes
dd0477a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>MP3 Converter - Sergidev</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
    <h1>MP3 Converter</h1>

    <div id="drop-area">
        <p>Drag & drop a file here or click to select</p>
        <input type="file" id="fileInput" accept=".mp3,.wav">
    </div>

    <div id="options" style="display: none;">
        <label for="multiplicationFactor">Multiplication Factor:</label>
        <input type="range" id="multiplicationFactor" min="40" max="160" value="100">
        <span id="factorValue">100</span>

        <button id="processButton">Convert</button>
    </div>

    <div id="result" style="display: none;">
        <h2>Result</h2>
        <audio id="audioPlayer" controls></audio>
        <a id="downloadLink" download>Download</a>
    </div>

    <script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>