We have a camera that records videos with high FPS rate - 163.
To capture from the camera in C#, we use AForge.Video library. The capture works fine.
For saving the video to a file, we use AForge.Video.FFMPEG.VideoFileWriter as follows:
FileWriter.Open("test.avi", eventArgs.Frame.Width, eventArgs.Frame.Height, 163, VideoCodec.MPEG4, 5000000);
What we're trying to figure out is how to use the VideoFileWriter to produce slow-motion video.
Assuming we have to do something with frame rate of the video file output? If so, what should we set the frame rate to? And if not, what's the correct approach to get the slow-motion output?
Thanks!