tags:

views:

84

answers:

1

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

A: 

Try ffmpeg. Something like this should work:

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

Steve Rowe