From 41f34a84518d1feb50eb5be76bdfcc89072806a4 Mon Sep 17 00:00:00 2001 From: Bryan1029384756 <23323626+Bryan1029384756@users.noreply.github.com> Date: Wed, 11 Feb 2026 15:31:11 -0600 Subject: [PATCH] feat: Add VoiceContext for managing LiveKit voice chat connections, state, and actions with Convex integration. --- Frontend/Electron/src/contexts/VoiceContext.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Frontend/Electron/src/contexts/VoiceContext.jsx b/Frontend/Electron/src/contexts/VoiceContext.jsx index acb01e2..09c7baa 100644 --- a/Frontend/Electron/src/contexts/VoiceContext.jsx +++ b/Frontend/Electron/src/contexts/VoiceContext.jsx @@ -93,6 +93,11 @@ export const VoiceProvider = ({ children }) => { audioPreset: { maxBitrate: 384_000 }, dtx: true, red: true, + screenShareEncoding: { + maxBitrate: 10_000_000, + maxFramerate: 60, + }, + screenShareSimulcastLayers: [], }, }); await newRoom.connect(import.meta.env.VITE_LIVEKIT_URL, lkToken);