ali
ali

Reputation: 1

extract frames from h264 encoder

how to extract frames from h264 encoder? i want to work with I frame bit streame.is there anybody tell me how can i get this frames. i use jm 15. thanks

Upvotes: 0

Views: 2004

Answers (1)

Steve Rowe
Steve Rowe

Reputation: 19423

Try ffmpeg. Something like this should work:

ffmpeg -i foo.mp4 -r 1 -s WxH -f image2 foo-%03d.jpeg

Upvotes: 0

Related Questions