KASM-3313 Update Stream Quality Presets (#36)

- 60fps for High,Extreme
- Max Settings for Extreme
This commit is contained in:
j-travis 2022-10-07 12:05:22 -04:00 committed by GitHub
parent 820b948372
commit 79a7dd0ccf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -1942,10 +1942,10 @@ const UI = {
UI.showStatus("Refresh or reconnect to apply changes."); UI.showStatus("Refresh or reconnect to apply changes.");
return; return;
case 4: //extreme case 4: //extreme
UI.forceSetting('dynamic_quality_min', 8); UI.forceSetting('dynamic_quality_min', 9);
UI.forceSetting('dynamic_quality_max', 9); UI.forceSetting('dynamic_quality_max', 9);
UI.forceSetting('framerate', 30); UI.forceSetting('framerate', 60);
UI.forceSetting('treat_lossless', 8); UI.forceSetting('treat_lossless', 9);
// effectively disables video mode // effectively disables video mode
UI.forceSetting('video_time', 100); UI.forceSetting('video_time', 100);
@ -1953,8 +1953,8 @@ const UI = {
// go ahead and set video mode settings, won't be used // go ahead and set video mode settings, won't be used
UI.forceSetting('max_video_resolution_x', 1920); UI.forceSetting('max_video_resolution_x', 1920);
UI.forceSetting('max_video_resolution_y', 1080); UI.forceSetting('max_video_resolution_y', 1080);
UI.forceSetting('jpeg_video_quality', 8); UI.forceSetting('jpeg_video_quality', 9);
UI.forceSetting('webp_video_quality', 8); UI.forceSetting('webp_video_quality', 9);
UI.forceSetting('video_scaling', 0); UI.forceSetting('video_scaling', 0);
UI.forceSetting('video_out_time', 3); UI.forceSetting('video_out_time', 3);
break; break;
@ -1965,7 +1965,7 @@ const UI = {
UI.forceSetting('dynamic_quality_max', 9); UI.forceSetting('dynamic_quality_max', 9);
UI.forceSetting('max_video_resolution_x', 1920); UI.forceSetting('max_video_resolution_x', 1920);
UI.forceSetting('max_video_resolution_y', 1080); UI.forceSetting('max_video_resolution_y', 1080);
UI.forceSetting('framerate', 30); UI.forceSetting('framerate', 60);
UI.forceSetting('treat_lossless', 8); UI.forceSetting('treat_lossless', 8);
UI.forceSetting('video_time', 5); UI.forceSetting('video_time', 5);
UI.forceSetting('video_area', 65); UI.forceSetting('video_area', 65);