如何从x265视频中提取所有HEVC i帧图像?

huangapple go评论51阅读模式
英文:

How to extract all HEVC i-frame images from a x265 video?

问题

只保留I帧,将其保存为图像。

英文:

I need to drop all the B-frames and P-frames, only keeping the I-frames to be saved as images.

答案1

得分: 2

你可以使用 -skip_frame 指令指示解码器跳过非关键帧。

ffmpeg -skip_frame nokey -i input.mp4 -vsync vfr img%04d.png
英文:

You can instruct the decoder to skip non-keyframes using -skip_frame.

ffmpeg -skip_frame nokey -i input.mp4 -vsync vfr img%04d.png

huangapple
  • 本文由 发表于 2023年4月17日 10:31:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/76031367.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定