FX_PATH
This commit is contained in:
parent
34a599cbc7
commit
826086057a
1 changed files with 2 additions and 1 deletions
3
app.py
3
app.py
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue