From b0a391095001074e7dac1a0ef427d8f996b6f9db Mon Sep 17 00:00:00 2001 From: n00mkrad Date: Thu, 9 Sep 2021 19:56:45 +0200 Subject: [PATCH] Clarify that manual fps input is needed if framerate on img seq is invalid --- Code/Main/InterpolateUtils.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Code/Main/InterpolateUtils.cs b/Code/Main/InterpolateUtils.cs index 7764ff1..ba99a85 100644 --- a/Code/Main/InterpolateUtils.cs +++ b/Code/Main/InterpolateUtils.cs @@ -116,7 +116,8 @@ namespace Flowframes.Main if (passes && fpsOut.GetFloat() < 1f || fpsOut.GetFloat() > 1000f) { - ShowMessage($"Invalid output frame rate ({fpsOut.GetFloat()}).\nMust be 1-1000."); + string imgSeqNote = isFile ? "" : "\n\nWhen using an image sequence as input, you always have to specify the frame rate manually."; + ShowMessage($"Invalid output frame rate ({fpsOut.GetFloat()}).\nMust be 1-1000.{imgSeqNote}"); passes = false; }