diff --git a/mediaflow_proxy/configs.py b/mediaflow_proxy/configs.py index b32ea19..f38b488 100644 --- a/mediaflow_proxy/configs.py +++ b/mediaflow_proxy/configs.py @@ -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"