how to convert avi file to an jpg’s images array using .net , i need to develop a task that will take the avi file and save it as jpg images on another folder
Share
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 do this from the command line with ffmpeg. See this part of the documentation. For example,
will save all frames from
infile.avias numbered jpegs (image-001.jpg, image-002.jpg,…). You can then use other command line options to get just the frames you want or do some other post processing like resizing or deinterlacing.You could just create a program in .NET that calls the ffmpeg executable with the right command line and moves the resulting files into the correct place. It would be much easier than trying to use some video library directly.