can u help me with regex in FFMpegConverter?
I have a bitmaps a saving them like it:
foreach (Bitmap printscreen in printscreeny)
{
printscreen.Save(Path.GetTempPath() + guid +"_"+ i);
i++;
}
then I want to convert them by NReco videoConverter but dont know how to write regex part to describe path.
I have it like it:
videoConverter.ConvertMedia(Path.GetTempPath() + guid + "_"+" *%d.bmp", null,"test.mp4", null, convertSettings);
Thanks