From 538938e01e6a0fc24b8f18c849d97bd3b5d04277 Mon Sep 17 00:00:00 2001 From: fkwp Date: Wed, 27 Aug 2025 14:01:34 +0200 Subject: [PATCH] use also h264 as backup codec --- src/livekit/options.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/livekit/options.ts b/src/livekit/options.ts index 1f38433e..8210f8a8 100644 --- a/src/livekit/options.ts +++ b/src/livekit/options.ts @@ -28,7 +28,7 @@ const defaultLiveKitPublishOptions: TrackPublishDefaults = { stopMicTrackOnMute: false, videoCodec: "h264", videoEncoding: VideoPresets.h720.encoding, - backupCodec: { codec: "vp8", encoding: VideoPresets.h720.encoding }, + backupCodec: { codec: "h264", encoding: VideoPresets.h720.encoding }, } as const; export const defaultLiveKitOptions: RoomOptions = {