8 lines
340 B
Python
8 lines
340 B
Python
# app/config.py
|
|
ffmpeg_path = r"D:\software\ffmpeg\ffmpeg-4.4.1\bin\ffmpeg.exe"
|
|
base_url = "rtsp:127.0.0.1:8554/"
|
|
cleanup_interval = 60 # 定时清理间隔时间(秒)
|
|
expired_timeout = 60 * 1000 * 1 # 流空闲超时时间(毫秒)
|
|
rtmp_url = "rtmp://127.0.0.1/live"
|
|
flv_url = "http://127.0.0.1:8080/live"
|
|
md5_salt = "linxyun2024" |