Run post after ffmpeg has completed

Former-commit-id: 418cb943ff
This commit is contained in:
Malte Rosenbjerg 2020-12-07 17:25:54 +01:00
parent ac82e17d25
commit ab277aa8fa

View file

@ -65,8 +65,8 @@ void OnCancelEvent(object sender, EventArgs args)
{
errorCode = t.Result;
cancellationTokenSource.Cancel();
// _ffMpegArguments.Post();
}), _ffMpegArguments.During(cancellationTokenSource.Token).ContinueWith(t => _ffMpegArguments.Post()));
_ffMpegArguments.Post();
}), _ffMpegArguments.During(cancellationTokenSource.Token));
}
catch (Exception e)
{
@ -111,8 +111,8 @@ await Task.WhenAll(instance.FinishedRunning().ContinueWith(t =>
{
errorCode = t.Result;
cancellationTokenSource.Cancel();
// _ffMpegArguments.Post();
}), _ffMpegArguments.During(cancellationTokenSource.Token).ContinueWith(t => _ffMpegArguments.Post())).ConfigureAwait(false);
_ffMpegArguments.Post();
}), _ffMpegArguments.During(cancellationTokenSource.Token)).ConfigureAwait(false);
}
catch (Exception e)
{