This commit is contained in:
Oha 2025-02-21 16:52:25 +01:00
parent 8cbc49454e
commit e30fd83a90
3 changed files with 68 additions and 0 deletions

28
app.py Normal file
View file

@ -0,0 +1,28 @@
import threading
from flask import Flask, render_template, request
import os
playback = False
app = Flask(__name__)
def audio_player():
os.system(f'mpv --input-ipc-server=/tmp/mpvsocket --shuffle music &')
@app.route('/', methods=["POST", "GET"])
def audiothing():
global playback
if request.method == "GET":
return render_template("player.html", playing=playback)
if request.method == "POST":
if playback:
print("Killing Audio Playback..")
os.system("killall mpv")
playback = False
else:
print("Starting Audio Playback..")
audio_player()
playback = True
return render_template("player.html", playing=playback)
if __name__ == '__main__':
app.run()

23
static/style.css Normal file
View file

@ -0,0 +1,23 @@
body {
background-color: #013338;
color: #ffffff;
align-content: center;
text-align: center;
}
h1 {
font-size: 50px;
margin-bottom: -5px;
}
button {
font-size: 20px;
margin-top: 50px;
color: white;
background-color: #010a38;
border-radius: 30px;
padding: 20px 50px;
border: 0;
}
button:hover {
background-color: #021b9f;
}

17
templates/player.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LAAS</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>LAAS</h1>
<p>(Lofi As A Service)</p>
<p>Click the Button below to {% if playing %}Stop {% else %}Start {% endif %} Playback.</p>
<form method="post">
<button>{% if playing %}Stop {% else %}Start {% endif %}</button>
</form>
</body>
</html>