| <!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> |