ffmpeg 我怎么知道使用了什么预设
ffmpeg how do i know what preset was used
ffmpeg 我怎么知道使用了什么预设?
如何在 mediainfo 编码设置中找到它。
cpuid=0 / frame-threads=3 / no-wpp / no-pmode / no-pme / no-psnr / no-ssim / log-level=2 / input-csp=1 / input-res=1920x1080 / interlace=0 / total-frames=0 / level-idc=0 / high-tier=1 / uhd-bd=0 / ref=1 / no-allow-non-conformance / no-repeat-headers / annexb / no-aud / no-hrd / info / hash=0 / no-temporal-layers / open-gop / min-keyint=23 / keyint=250 / gop-lookahead=0 / bframes=3 / b-adapt=0 / b-pyramid / bframe-bias=0 / rc-lookahead=5 / lookahead-slices=0 / scenecut=0 / radl=0 / no-splice / no-intra-refresh / ctu=32 / min-cu-size=16 / no-rect / no-amp / max-tu-size=32 / tu-inter-depth=1 / tu-intra-depth=1 / limit-tu=0 / rdoq-level=0 / dynamic-rd=0.00 / no-ssim-rd / no-signhide / no-tskip / nr-intra=0 / nr-inter=0 / no-constrained-intra / strong-intra-smoothing / max-merge=2 / limit-refs=0 / no-limit-modes / me=0 / subme=0 / merange=57 / temporal-mvp / ...
是-preset ultrafast
为 H.265/HEVC 视频使用编码器 libx265。
如何找到使用的预设
使用 strings input.mp4 | grep x265
或 mediainfo input.mp4
获取问题中显示的信息。
去x265 documentation - Preset Options参考参数table
你的 ref=1
和 subme=0
与 ultrafast 预设相关。
如果您的文件详细信息与任何预设不完全匹配,则可能使用了其他选项,或者您正在查看由具有不同设置的不同编码器(例如 libx264)创建的文件。
ffmpeg 我怎么知道使用了什么预设?
如何在 mediainfo 编码设置中找到它。
cpuid=0 / frame-threads=3 / no-wpp / no-pmode / no-pme / no-psnr / no-ssim / log-level=2 / input-csp=1 / input-res=1920x1080 / interlace=0 / total-frames=0 / level-idc=0 / high-tier=1 / uhd-bd=0 / ref=1 / no-allow-non-conformance / no-repeat-headers / annexb / no-aud / no-hrd / info / hash=0 / no-temporal-layers / open-gop / min-keyint=23 / keyint=250 / gop-lookahead=0 / bframes=3 / b-adapt=0 / b-pyramid / bframe-bias=0 / rc-lookahead=5 / lookahead-slices=0 / scenecut=0 / radl=0 / no-splice / no-intra-refresh / ctu=32 / min-cu-size=16 / no-rect / no-amp / max-tu-size=32 / tu-inter-depth=1 / tu-intra-depth=1 / limit-tu=0 / rdoq-level=0 / dynamic-rd=0.00 / no-ssim-rd / no-signhide / no-tskip / nr-intra=0 / nr-inter=0 / no-constrained-intra / strong-intra-smoothing / max-merge=2 / limit-refs=0 / no-limit-modes / me=0 / subme=0 / merange=57 / temporal-mvp / ...
是-preset ultrafast
为 H.265/HEVC 视频使用编码器 libx265。
如何找到使用的预设
使用
strings input.mp4 | grep x265
或mediainfo input.mp4
获取问题中显示的信息。去x265 documentation - Preset Options参考参数table
你的
ref=1
和subme=0
与 ultrafast 预设相关。
如果您的文件详细信息与任何预设不完全匹配,则可能使用了其他选项,或者您正在查看由具有不同设置的不同编码器(例如 libx264)创建的文件。