婆罗门
精华
|
战斗力 鹅
|
回帖 0
注册时间 2003-6-6
|
用配置脚本啊
低分辨率开暴力的,高分辨率就保守设置一点.对SD视频还是提升很明显的,720P我基本就开的不是很狠了.毕竟要渲染60帧,真的要求挺高的.
否则,开太暴力了,高分辨率的就会丢帧
- 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"
复制代码
|
|