This commit is contained in:
Oha 2025-02-23 21:26:20 +01:00
parent bb474a24cb
commit 9e6bc5d26e

29
app.py
View file

@ -1,6 +1,7 @@
from flask import Flask, render_template, request, send_file
from flask import Flask, render_template, request, send_file, Response
import os
os.system("killall mpv")
playback = False
if not os.path.exists("music"):
os.mkdir("music")
@ -54,5 +55,31 @@ def filemgr(path=""):
file[1] = sizeof_fmt(file[1])
return render_template("filemanager.html", files=files, path=path)
@app.route("/api/<action>")
def api(action):
global playback
if action == "start":
if playback:
return Response("Laas is already lofi'ing", 400)
else:
audio_player()
playback = True
return Response("ok", 200)
elif action == "stop":
if not playback:
return Response("You cant stop when theres no playback, womp womp!", 400)
else:
os.system("killall mpv")
playback = False
return Response("ok", 200)
elif action == "status":
if playback:
return "True"
else:
return "False"
else:
return Response("Invalid api route", 400)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=1337)