Select Text read_text.html

player.html

<!-- player.html -->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>MP3 Player</title>
</head>
<body>
    <h1>Uploaded MP3 Player player.html</h1>
    <a href="{{ url_for('index') }}" class="refresh-button">HOME</a><br><br>
    <img src="{{ img }}" alt="temp.jpg"><br><br>
    {% if audio_file %}
    <!-- Play the uploaded MP3 file -->
    <audio controls>
        <source src="{{ audio_file }} type="audio/mp3">
        Your browser does not support the audio element.
    </audio>
    {% else %}
    <p>No audio file found!</p>
    {% endif %}
    <video width="320" height="auto" controls>
        <source src="{{ video }}" type="video/mp4">
            Your browser does not support the video tag.
            </video>
</body>
</html>
Back to file list