Spaces:
Running
Running
Reduce live MPD stream delay to 10 seconds
Browse files
mediaflow_proxy/configs.py
CHANGED
@@ -4,7 +4,7 @@ from pydantic_settings import BaseSettings
|
|
4 |
class Settings(BaseSettings):
|
5 |
api_password: str # The password for accessing the API endpoints.
|
6 |
proxy_url: str | None = None # The URL of the proxy server to route requests through.
|
7 |
-
mpd_live_stream_delay: int =
|
8 |
|
9 |
class Config:
|
10 |
env_file = ".env"
|
|
|
4 |
class Settings(BaseSettings):
|
5 |
api_password: str # The password for accessing the API endpoints.
|
6 |
proxy_url: str | None = None # The URL of the proxy server to route requests through.
|
7 |
+
mpd_live_stream_delay: int = 10 # The delay in seconds for live MPD streams.
|
8 |
|
9 |
class Config:
|
10 |
env_file = ".env"
|