help to extract I and P frames from video file using ffmpeg
help to extract I and P frames from video file using ffmpeg
please i need a code that extract the frames from a video file
Re: help to extract I and P frames from video file using ffm
please help me ....
Re: help to extract I and P frames from video file using ffm
Hi,
try to run this command
ffmpeg -i input -vsync 0 -vf select ="eq(pict_type\,PICT_TYPE_I)" output.
I could do it for mpeg video. But select filter shud be enabled. U shud be able to get I frames. Hope I am clear.
Regards
try to run this command
ffmpeg -i input -vsync 0 -vf select ="eq(pict_type\,PICT_TYPE_I)" output.
I could do it for mpeg video. But select filter shud be enabled. U shud be able to get I frames. Hope I am clear.
Regards
'