英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论