steam-server/app/config.py

9 lines
399 B
Python
Raw Normal View History

2024-12-12 20:04:36 +08:00
# app/config.py
ffmpeg_path = r"D:\software\ffmpeg\ffmpeg-4.4.1\bin\ffmpeg.exe"
cleanup_interval = 60 # 定时清理间隔时间(秒)
2024-12-16 14:31:28 +08:00
expired_timeout = 60 * 1000 * 6 # 流空闲超时时间(毫秒)
2024-12-17 20:07:29 +08:00
srs_host = "127.0.0.1"
rtmp_url = f"rtmp://{srs_host}/live"
flv_url = f"http://{srs_host}:8080/live"
rtc_url = f"http://{srs_host}:1985/rtc/v1/whep/?app=live&stream="
2024-12-13 18:21:25 +08:00
md5_salt = "linxyun2024"