Hi I wrote the below simple code to merge two video files, it's working. But I wanna track the merging task percentage (or something that shows the progress), so I could show it using a progress bar. How to track the progress? Thanks.
textBox_taskMsg.Text = "Task is being performed.. This may take some time.";
string[] files = { textBox_Source1.Text, textBox_Source2.Text }; // Vids to be merged
string output = textBox_Source1.Text + "_merged.mp4"; // Output vid name
var conversion = await FFmpeg.Conversions.FromSnippet.Concatenate(output, files); // Merge
await conversion.Start();
// SHOW MERGING PROGRESS
textBox_taskMsg.Text = "Merge Complete.";