TA的每日心情 | 慵懒 2022-4-12 12:54 |
---|
签到天数: 809 天 [LV.10]以坛为家III
荣誉会员
- 积分
- 132538
|
本帖最后由 laichiaheng 于 2020-11-16 22:49 编辑
請問內建的 auto-profile 怎麼使用?有人會嗎?
@cczzhh
試用了一下,內建版本更簡潔。
以原文為例
- cond:((p["video-params/w"]<1358 and p["video-params/h"]<764) and
- (p["video-params/w"]>=1080 or p["video-params/h"]>=608) and
- p["estimated-vf-fps"]>=31)
复制代码
直接改成
- profile-cond= width < 1358 and height < 764 and width >= 1080 or height >= 608 and fps >=31
复制代码
但不曉得那個 profile-desc 到底有什麼作用,好像單純註解而已?
其他比較特殊的還是要寫類似 get("audio-params/channel-count", 0) > 2 與 get("estimated-vf-fps", 0) >29 這種格式
|
|