9 lines
399 B
Python
9 lines
399 B
Python
# app/config.py
|
|
ffmpeg_path = r"D:\software\ffmpeg\ffmpeg-4.4.1\bin\ffmpeg.exe"
|
|
cleanup_interval = 60 # 定时清理间隔时间(秒)
|
|
expired_timeout = 60 * 1000 * 6 # 流空闲超时时间(毫秒)
|
|
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="
|
|
md5_salt = "linxyun2024" |