How can I use ffmpeg functions to decode video to images and then again encode the images to video?
Can I write a program for this instead of using CLI?
Ideally I would like to use ffmpeg dll and reference required functions from my c# application.
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.
You can use ffmpeg to extract images from videos and in reverse generate video back from sequence of images.
Either you can use ffmpeg wrapper e.g http://www.mediasoftpro.com/post/18/extracting-frames-from-video-and-re-encoding-image.aspx or can use c# “Process() class to execute ffmpeg commands in background with c# application.