diff --git a/OKEGui/OKEGui/JobProcessor/Video/x265Encoder.cs b/OKEGui/OKEGui/JobProcessor/Video/x265Encoder.cs index aef9e627..fe82bce9 100644 --- a/OKEGui/OKEGui/JobProcessor/Video/x265Encoder.cs +++ b/OKEGui/OKEGui/JobProcessor/Video/x265Encoder.cs @@ -55,6 +55,7 @@ public override void ProcessLine(string line, StreamType stream) if (line.ToLowerInvariant().Contains("encoded")) { + Logger.Debug(line); Regex rf = new Regex("encoded ([0-9]+) frames in ([0-9]+.[0-9]+)s \\(([0-9]+.[0-9]+) fps\\), ([0-9]+.[0-9]+) kb/s, Avg QP:(([0-9]+.[0-9]+))"); var result = rf.Split(line); @@ -87,6 +88,7 @@ public override void ProcessLine(string line, StreamType stream) } else { + Logger.Debug(line); return; }