Select Text read_text.html

play_mp3.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Play MP3</title>
</head>
<body>
    <h1>Audio Player</h1>
    <a href="{{ url_for('index') }}" class="refresh-button">HOME</a><br><br>
    <audio controls>
        <source src="{{ url_for('static', filename=music.split('static/')[1]) }}" type="audio/mp3">
        Your browser does not support the audio element.
    </audio>
</body>
</html>
Back to file list