本文介绍了检查关键帧间隔?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何检查视频文件的关键帧间隔?
How can I check keyframe interval of a video file?
我在ffmpeg输出中看到的全部是:
all I can see in ffmpeg output is:
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
推荐答案
您可以使用ffprobe
显示每个关键帧的时间戳:
You can display the timestamp for each keyframe with ffprobe
:
ffprobe -loglevel error -select_streams v:0 -show_entries packet=pts_time,flags -of csv=print_section=0 input.mp4 | awk -F',' '/K/ {print $1}'
或更慢的方法,不需要awk
或类似的其他处理工具:
Or a slower method that does not require awk
or similar additional processing tools:
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
文档.
See the ffprobe
documentation for more info.
这篇关于检查关键帧间隔?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!