如何使用 ffprobe select 主流

How to select main stream with ffprobe

在使用 ffmpeg/ffprobe 进行自动化工作时,我倾向于只 select 第一个视频流而忽略其余部分。今天我遇到了一个文件,其中第一个视频流没有帧,但第二个视频流有。

有没有办法可靠地知道应该 select编辑哪个流?我想我可以查看帧数,但我看到诸如“profile=Main”与“profile=Baseline”或“level=-99”与“level=40”之类的东西,我想知道这些是否存在,或者有些不同关键,是更好的指标。

[STREAM]
index=0
codec_name=mjpeg
codec_long_name=Motion JPEG
profile=Baseline
codec_type=video
codec_time_base=0/1
codec_tag_string=[0][0][0][0]
codec_tag=0x0000
width=800
height=450
coded_width=800
coded_height=450
has_b_frames=0
sample_aspect_ratio=N/A
display_aspect_ratio=N/A
pix_fmt=yuvj420p
level=-99
color_range=pc
color_space=bt470bg
color_transfer=unknown
color_primaries=unknown
chroma_location=center
field_order=unknown
timecode=N/A
refs=1
id=N/A
r_frame_rate=90000/1
avg_frame_rate=0/0
time_base=1/90000
start_pts=0
start_time=0.000000
duration_ts=58094107
duration=645.490078
bit_rate=N/A
max_bit_rate=N/A
bits_per_raw_sample=8
nb_frames=N/A
nb_read_frames=N/A
nb_read_packets=N/A
DISPOSITION:default=0
DISPOSITION:dub=0
DISPOSITION:original=0
DISPOSITION:comment=0
DISPOSITION:lyrics=0
DISPOSITION:karaoke=0
DISPOSITION:forced=0
DISPOSITION:hearing_impaired=0
DISPOSITION:visual_impaired=0
DISPOSITION:clean_effects=0
DISPOSITION:attached_pic=1
DISPOSITION:timed_thumbnails=0
[/STREAM]
[STREAM]
index=1
codec_name=h264
codec_long_name=H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
profile=Main
codec_type=video
codec_time_base=7745881/464208000
codec_tag_string=avc1
codec_tag=0x31637661
width=1280
height=720
coded_width=1280
coded_height=720
has_b_frames=0
sample_aspect_ratio=N/A
display_aspect_ratio=N/A
pix_fmt=yuv420p
level=40
color_range=unknown
color_space=unknown
color_transfer=unknown
color_primaries=unknown
chroma_location=left
field_order=unknown
timecode=N/A
refs=1
is_avc=true
nal_length_size=4
id=N/A
r_frame_rate=179/6
avg_frame_rate=232104000/7745881
time_base=1/60000
start_pts=0
start_time=0.000000
duration_ts=38729405
duration=645.490083
bit_rate=20005057
max_bit_rate=N/A
bits_per_raw_sample=8
nb_frames=19342
nb_read_frames=N/A
nb_read_packets=N/A
DISPOSITION:default=1
DISPOSITION:dub=0
DISPOSITION:original=0
DISPOSITION:comment=0
DISPOSITION:lyrics=0
DISPOSITION:karaoke=0
DISPOSITION:forced=0
DISPOSITION:hearing_impaired=0
DISPOSITION:visual_impaired=0
DISPOSITION:clean_effects=0
DISPOSITION:attached_pic=0
DISPOSITION:timed_thumbnails=0
TAG:creation_time=2022-02-20T16:07:45.000000Z
TAG:language=und
[/STREAM]

第一个视频流是单幅图像作品。此类流至少设置了以下两种配置之一。

比较

DISPOSITION:attached_pic=1
DISPOSITION:timed_thumbnails=0

对比

DISPOSITION:attached_pic=0
DISPOSITION:timed_thumbnails=0

第二名是看平均帧率

比较

avg_frame_rate=0/0

对比

avg_frame_rate=232104000/7745881