mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Merge pull request #339 from keg247/fire-notify-on-progress
Move NotifyOnProgress processing to ErrorData
This commit is contained in:
commit
0f91c508df
2 changed files with 54 additions and 44 deletions
|
@ -1,4 +1,7 @@
|
||||||
using FFMpegCore.Enums;
|
using FFMpegCore.Arguments;
|
||||||
|
using FFMpegCore.Enums;
|
||||||
|
using FFMpegCore.Exceptions;
|
||||||
|
using FFMpegCore.Pipes;
|
||||||
using FFMpegCore.Test.Resources;
|
using FFMpegCore.Test.Resources;
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using System;
|
using System;
|
||||||
|
@ -8,11 +11,8 @@
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using FFMpegCore.Arguments;
|
|
||||||
using FFMpegCore.Exceptions;
|
|
||||||
using FFMpegCore.Pipes;
|
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace FFMpegCore.Test
|
namespace FFMpegCore.Test
|
||||||
{
|
{
|
||||||
|
@ -505,14 +505,22 @@ public void Video_UpdatesProgress()
|
||||||
|
|
||||||
var percentageDone = 0.0;
|
var percentageDone = 0.0;
|
||||||
var timeDone = TimeSpan.Zero;
|
var timeDone = TimeSpan.Zero;
|
||||||
void OnPercentageProgess(double percentage) => percentageDone = percentage;
|
|
||||||
void OnTimeProgess(TimeSpan time) => timeDone = time;
|
|
||||||
|
|
||||||
var analysis = FFProbe.Analyse(TestResources.Mp4Video);
|
var analysis = FFProbe.Analyse(TestResources.Mp4Video);
|
||||||
|
|
||||||
|
void OnPercentageProgess(double percentage)
|
||||||
|
{
|
||||||
|
if (percentage < 100) percentageDone = percentage;
|
||||||
|
}
|
||||||
|
|
||||||
|
void OnTimeProgess(TimeSpan time)
|
||||||
|
{
|
||||||
|
if (time < analysis.Duration) timeDone = time;
|
||||||
|
}
|
||||||
|
|
||||||
var success = FFMpegArguments
|
var success = FFMpegArguments
|
||||||
.FromFileInput(TestResources.Mp4Video)
|
.FromFileInput(TestResources.Mp4Video)
|
||||||
.OutputToFile(outputFile, false, opt => opt
|
.OutputToFile(outputFile, false, opt => opt
|
||||||
.WithDuration(TimeSpan.FromSeconds(2)))
|
.WithDuration(analysis.Duration))
|
||||||
.NotifyOnProgress(OnPercentageProgess, analysis.Duration)
|
.NotifyOnProgress(OnPercentageProgess, analysis.Duration)
|
||||||
.NotifyOnProgress(OnTimeProgess)
|
.NotifyOnProgress(OnTimeProgess)
|
||||||
.ProcessSynchronously();
|
.ProcessSynchronously();
|
||||||
|
@ -520,7 +528,9 @@ public void Video_UpdatesProgress()
|
||||||
Assert.IsTrue(success);
|
Assert.IsTrue(success);
|
||||||
Assert.IsTrue(File.Exists(outputFile));
|
Assert.IsTrue(File.Exists(outputFile));
|
||||||
Assert.AreNotEqual(0.0, percentageDone);
|
Assert.AreNotEqual(0.0, percentageDone);
|
||||||
|
Assert.AreNotEqual(100.0, percentageDone);
|
||||||
Assert.AreNotEqual(TimeSpan.Zero, timeDone);
|
Assert.AreNotEqual(TimeSpan.Zero, timeDone);
|
||||||
|
Assert.AreNotEqual(analysis.Duration, timeDone);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestMethod, Timeout(10000)]
|
[TestMethod, Timeout(10000)]
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
using System;
|
using FFMpegCore.Exceptions;
|
||||||
|
using FFMpegCore.Helpers;
|
||||||
|
using Instances;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using FFMpegCore.Exceptions;
|
|
||||||
using FFMpegCore.Helpers;
|
|
||||||
using Instances;
|
|
||||||
|
|
||||||
namespace FFMpegCore
|
namespace FFMpegCore
|
||||||
{
|
{
|
||||||
|
@ -204,10 +204,10 @@ private ProcessArguments PrepareProcessArguments(FFOptions ffOptions,
|
||||||
var processArguments = new ProcessArguments(startInfo);
|
var processArguments = new ProcessArguments(startInfo);
|
||||||
cancellationTokenSource = new CancellationTokenSource();
|
cancellationTokenSource = new CancellationTokenSource();
|
||||||
|
|
||||||
if (_onOutput != null || _onTimeProgress != null || (_onPercentageProgress != null && _totalTimespan != null))
|
if (_onOutput != null)
|
||||||
processArguments.OutputDataReceived += OutputData;
|
processArguments.OutputDataReceived += OutputData;
|
||||||
|
|
||||||
if (_onError != null)
|
if (_onError != null || _onTimeProgress != null || (_onPercentageProgress != null && _totalTimespan != null))
|
||||||
processArguments.ErrorDataReceived += ErrorData;
|
processArguments.ErrorDataReceived += ErrorData;
|
||||||
|
|
||||||
return processArguments;
|
return processArguments;
|
||||||
|
@ -216,12 +216,6 @@ private ProcessArguments PrepareProcessArguments(FFOptions ffOptions,
|
||||||
private void ErrorData(object sender, string msg)
|
private void ErrorData(object sender, string msg)
|
||||||
{
|
{
|
||||||
_onError?.Invoke(msg);
|
_onError?.Invoke(msg);
|
||||||
}
|
|
||||||
|
|
||||||
private void OutputData(object sender, string msg)
|
|
||||||
{
|
|
||||||
Debug.WriteLine(msg);
|
|
||||||
_onOutput?.Invoke(msg);
|
|
||||||
|
|
||||||
var match = ProgressRegex.Match(msg);
|
var match = ProgressRegex.Match(msg);
|
||||||
if (!match.Success) return;
|
if (!match.Success) return;
|
||||||
|
@ -233,5 +227,11 @@ private void OutputData(object sender, string msg)
|
||||||
var percentage = Math.Round(processed.TotalSeconds / _totalTimespan.Value.TotalSeconds * 100, 2);
|
var percentage = Math.Round(processed.TotalSeconds / _totalTimespan.Value.TotalSeconds * 100, 2);
|
||||||
_onPercentageProgress(percentage);
|
_onPercentageProgress(percentage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void OutputData(object sender, string msg)
|
||||||
|
{
|
||||||
|
Debug.WriteLine(msg);
|
||||||
|
_onOutput?.Invoke(msg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue