Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 ffprobe 语法有问题,让打印格式输出默认值,没有键。有一个 nokey 选项,所以我传入这样的内容
ffprobe -print_format 默认nokey
但我什么也没得到,甚至没有错误。我的语法有问题吗?
答案是
-printformat 默认=nokey=1
可以传入多个选项
-print_format 默认=nokey=1:noprint_wrappers=1
正确的句法应该是
ffprobe -print_format 默认 -skip_frame nokey -i
skip_frame = 告诉可以跳过什么样的帧以使 ffprobe 更快。“nokey”表示跳过非关键帧(P,B)。
但 nokey 是默认选项,您可以“跳过”(没有双关语 :D )此选项。