Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Boost max koalality
Browse files Browse the repository at this point in the history
  • Loading branch information
roznawsk committed Mar 26, 2024
1 parent 0bab21c commit fe7ef2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/src/pages/room/bandwidth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { TrackType } from "../../jellyfish.types.ts";
const NO_LIMIT: BandwidthLimit = 0;
const DEFAULT_LIMIT: BandwidthLimit = 1500;
export const SIMULCAST_BANDWIDTH_LIMITS: SimulcastBandwidthLimit = new Map([
["h", 1500],
["h", 4500],
["m", 500],
["l", 100],
]);
Expand Down
10 changes: 5 additions & 5 deletions assets/src/pages/room/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ export const AUDIO_TRACK_CONSTRAINTS: MediaTrackConstraints = {

export const VIDEO_TRACK_CONSTRAINTS: MediaTrackConstraints = {
width: {
max: 1280,
ideal: 1280,
max: 1920,
ideal: 1920,
min: 640,
},
height: {
max: 720,
ideal: 720,
max: 1080,
ideal: 1080,
min: 320,
},
frameRate: {
max: 30,
ideal: 24,
ideal: 30,
},
} as const;

Expand Down

0 comments on commit fe7ef2e

Please sign in to comment.