婆罗门
精华
|
战斗力 鹅
|
回帖 0
注册时间 2003-6-6
|
发表于 2019-4-29 15:09
来自手机
|
显示全部楼层
- 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"
复制代码
所有档位都分"低于31FPS"和"高于31FPS"两种
"SD":横向没有1280或者纵向没有720,涵盖了所有非标清的分辨率
"720P":横向=1280或者纵向=720的,涵盖所有市面上标720P的视频(电影一般是横向1280叫720P,4:3动画横向720叫720P)
"FHD"
"QHD"
自己调吧
—— 来自 HMD Global Nokia 7 plus, Android 8.1.0上的 S1Next-鹅版 v2.1.2 |
|