.NET Standard wrapper for FFmpeg. It allows to process media without know how FFmpeg works, and can be used to pass customized arguments to FFmpeg from dotnet core application.
I am using ExtractEveryNthFrame to extract images from a video file. It works well.
Can I create a callback function when the image is created and saved to disk?
You can try to use OnDataReceived event. There should be some information about progress.
I don't plan to add any callback or event when image is created
GREET,
I am using ExtractEveryNthFrame to extract images from a video file. It works well. Can I create a callback function when the image is created and saved to disk?