Skip to content

Commit

Permalink
adjusted bitrate
Browse files Browse the repository at this point in the history
  • Loading branch information
timephy committed Sep 22, 2024
1 parent b43e0e1 commit 766aa44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/tui-components-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@timephy/tui-components-svelte",
"version": "0.0.22",
"version": "0.0.23",
"description": "",
"homepage": "https://github.com/timephy/tui/tree/main/tui-components-svelte#readme",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,9 @@ export class PeerConnection {
direction: "sendrecv",
sendEncodings: [
{
maxBitrate: 1_500_000, // 2_000_000 before
networkPriority: "very-low",
priority: "very-low",
maxBitrate: 2_500_000, // 2_000_000 before, then 1_500_000
networkPriority: "medium",
priority: "medium",
maxFramerate: 30,
},
],
Expand All @@ -501,7 +501,7 @@ export class PeerConnection {
direction: "sendrecv",
sendEncodings: [
{
maxBitrate: 12_000_000, // 10_000_000 before
maxBitrate: 10_000_000, // 10_000_000 before, then 12_000_000
networkPriority: "medium",
priority: "medium",
maxFramerate: 60,
Expand Down

0 comments on commit 766aa44

Please sign in to comment.