Reduce live MPD stream delay to 10 seconds

This commit is contained in:
mhdzumair
2024-09-24 09:06:36 +05:30
parent 8e6ac6326f
commit 7b91efd8b2
+1 -1
View File
@@ -4,7 +4,7 @@ from pydantic_settings import BaseSettings
class Settings(BaseSettings):
api_password: str # The password for accessing the API endpoints.
proxy_url: str | None = None # The URL of the proxy server to route requests through.
mpd_live_stream_delay: int = 30 # The delay in seconds for live MPD streams.
mpd_live_stream_delay: int = 10 # The delay in seconds for live MPD streams.
class Config:
env_file = ".env"