6 lines
241 B
Python
6 lines
241 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 # 定时清理间隔时间(秒)
|
||
|
stream_timeout = 60 * 1000 * 5 # 流空闲超时时间(毫秒)
|