I have some jpeg clip ( total clip time is 55 seconds )
I want to isolate the bitmap that appear after 40 seconds of the clip.
How can i do it ?
Thanks for any help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This can be done using FFMpeg: http://muzso.hu/2008/12/28/extracting-thumbnails-still-images-frames-from-a-video-with-ffmpeg
If you need to implement functionality like this in your own application (and don’t want to invoke ffmpeg from it), you can use libavcodec, which is what powers ffmpeg. Note that the C# adaptation is still in development.