This commit is contained in:
deneb 2025-03-05 21:00:56 +01:00
parent 34a599cbc7
commit 826086057a

3
app.py
View file

@ -14,6 +14,7 @@ import asyncio
mpv_pidfile = Path(tempfile.gettempdir()).joinpath("laas_mpv.pidfile")
mpv_socket = Path(tempfile.gettempdir()).joinpath("mpvsocket")
music_path = Path(os.environ.get("MUSIC_PATH", "./music"))
fx_path = Path(os.environ.get("FX_PATH", "./fx"))
mpv_process: subprocess.Popen | None = None
app = Flask(__name__)
@ -290,7 +291,7 @@ async def api_play_fx(
if re.match("^https?://.*", filename_or_url):
playback_uri = filename_or_url
else:
file_path = music_path.joinpath(filename_or_url)
file_path = fx_path.joinpath(filename_or_url)
if not file_path.exists():
return jsonify(error_str.format(filename=filename_or_url)), 404
playback_uri = str(file_path)