我遇到了ffprobe语法的问题,让打印格式输出默认没有键。有一个nokey选项,所以我传递了类似的东西
ffprobe -print_format默认nokey
但我什么都没有回来,甚至没有错误。我的语法有问题吗?
答案 0 :(得分:4)
答案是
-printformat default = nokey = 1
可以在
中传递多个选项-print_format default = nokey = 1:noprint_wrappers = 1
答案 1 :(得分:2)
正确的syntext wold
ffprobe -print_format default -skip_frame nokey -i
skip_frame =告诉可以跳过哪种帧以使ffprobe更快。 “nokey”表示跳过非关键帧(P,B)。
但是nokey是默认选项,你可以“跳过”(没有双关语:D)这个选项。