diff --git a/app/cli/commandlineparser.cpp b/app/cli/commandlineparser.cpp index a6970cc4..37a98321 100644 --- a/app/cli/commandlineparser.cpp +++ b/app/cli/commandlineparser.cpp @@ -412,8 +412,8 @@ void StreamCommandLineParser::parse(const QStringList &args, StreamingPreference // Resolve --fps option if (parser.isSet("fps")) { preferences->fps = parser.getIntOption("fps"); - if (!inRange(preferences->fps, 30, 240)) { - parser.showError("FPS must be in range: 30 - 240"); + if (!inRange(preferences->fps, 10, 480)) { + parser.showError("FPS must be in range: 10 - 480"); } }