diff --git a/FFMpegCore/FFMpeg/FFMpegArgumentProcessor.cs b/FFMpegCore/FFMpeg/FFMpegArgumentProcessor.cs index cfb1544..cef0d95 100644 --- a/FFMpegCore/FFMpeg/FFMpegArgumentProcessor.cs +++ b/FFMpegCore/FFMpeg/FFMpegArgumentProcessor.cs @@ -154,6 +154,7 @@ private static bool HandleException(bool throwOnError, Exception e, IReadOnlyLis private void OutputData(object sender, (DataType Type, string Data) msg) { var match = ProgressRegex.Match(msg.Data); + Debug.WriteLine(msg.Data); if (!match.Success) return; var processed = TimeSpan.Parse(match.Groups[1].Value, CultureInfo.InvariantCulture);