andrew.kirillov wrote:mdr wrote: Do you provide any functionality for this at all within AForge?
For what? AForge.NET framework has nothing to do with FFMpeg comand line tools.
Sorry, it was late last night and I should have explained better.
Basically, everything is working fine for me as far as recording and playing back video is concerned. But part of what I want to achieve is use ffmpeg to create image array from my recorded .wmv file.
At the moment after writing each video frame I also use a combination of Bitmapsource and JpegBitmapEncoder to create a .jpg image per frame and then I use FFMpeg to create another video from those images within windows. The problem is that those created .jpg images won't have the same quality of doing it using FFMpeg within the command prompt because I can't use the same switches that ffmpeg provides such as -qscale and the bitrate option.
So my question is - Is it possible within the AForge.Video.FFMPEG assembly to create images for each frame of the video in the Videoplayer NewFrame event rather than creating the images myself with slightly lower quality?