Allow for higher stream FPS

This commit is contained in:
Grafaffel 2024-03-15 14:33:49 +01:00 committed by GitHub
parent 4abae9c708
commit b5f69f2478
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,7 +24,7 @@ import { addPatch } from "renderer/patches/shared";
import { isLinux, isWindows } from "renderer/utils";
const StreamResolutions = ["480", "720", "1080", "1440"] as const;
const StreamFps = ["15", "30", "60"] as const;
const StreamFps = ["15", "30", "60", "120"] as const;
const MediaEngineStore = findStoreLazy("MediaEngineStore");