婆罗门
精华
|
战斗力 鹅
|
回帖 0
注册时间 2003-6-6
|
发表于 2017-11-16 16:44
来自手机
|
显示全部楼层
本帖最后由 zmw_831110 于 2017-11-16 17:00 编辑
不能用暴力全局,要按分辨率做配置文件,分辨率高的就选低阶一些的参数
可以根据分辨率和帧频自己配置madvr
适可而止比较好

- if (srcWidth < 1280) and (srcHeight < 720) and (deintFps < 31)
- "SD"
- else if (srcWidth < 1280) and (srcHeight < 720)
- "SD_60FPS"
- else if ((srcWidth = 1280) or (srcHeight = 720)) and (deintFps < 31)
- "720P"
- else if (srcWidth = 1280) or (srcHeight = 720)
- "720P_60FPS"
- else if ((srcWidth <= 1920) or (srcHeight <= 1080)) and (deintFps < 31)
- "FHD"
- else if ((srcWidth <= 1920) or (srcHeight <= 1080))
- "FHD_60FPS"
- else if (deintFps < 31)
- "QHD"
- else
- "QHD_60FPS"
复制代码
|
|