NVENC ffmpeg err handling

This commit is contained in:
N00MKRAD
2021-01-14 17:55:00 +01:00
parent 048aff6093
commit d013a8a9fc

View File

@@ -62,6 +62,9 @@ namespace Flowframes
if(line.Contains("Could not open file"))
Interpolate.Cancel($"FFmpeg Error: {line}");
if (line.Contains("No NVENC capable devices found"))
Interpolate.Cancel($"FFmpeg Error: {line}\nMake sure you have an NVENC-capable Nvidia GPU.");
}
static void FfmpegOutputHandlerSilent (object sendingProcess, DataReceivedEventArgs outLine)