如何查看视频文件的关键帧间隔?
我在ffmpeg输出中看到的只有:
Metadata:
metadatacreator : Yet Another Metadata Injector for FLV - Version 1.8
hasKeyframes : true
hasVideo : true
hasAudio : true
hasMetadata : true
canSeekToEnd : true
datasize : 256600272
videosize : 210054362
audiosize : 45214634
lasttimestamp : 5347
lastkeyframetimestamp: 5347
lastkeyframelocation: 256649267
Duration: 01:29:07.24, start: 0.040000, bitrate: 383 kb/s
Stream #0:0: Video: h264 (High), yuv420p, 720x304 [SAR 1:1 DAR 45:19], 312 kb/s, 25 tbr, 1k tbn, 50 tbc
Stream #0:1: Audio: mp3, 44100 Hz, mono, s16p, 64 kb/s
答案 0 :(得分:25)
您可以使用ffprobe
显示每个关键帧的时间戳:
ffprobe -loglevel error -skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time -of csv=print_section=0 input.mp4
结果:
0.000000
2.502000
3.795000
6.131000
10.344000
12.554000
16.266000
17.559000
...
有关详细信息,请参阅ffprobe
documentation。
答案 1 :(得分:2)
以下命令将为您提供视频中所有关键帧的偏移
ffprobe -show_frames -select_streams v:0 -print_format csv Video.mov 2> /dev/null |stdbuf -oL cut -d ',' -f4 | grep -n 1 | stdbuf -oL cut -d ':' -f1
请注意,该命令可能会稍晚一些。有耐心: - )
ffprobe
命令以CSV格式提供帧级详细信息。 Rest是cut
和grep
命令的智能组合。
cut -d ',' -f4
过滤第四列 - 这是指'key_frame'标志。
grep -n 1
仅过滤关键帧,并在CSV Feed中显示其行号。
stdbuf -oL
使用cut
命令操作cut命令的缓冲区。