Adds support for rendering video with cover or contain (#28)

This commit is contained in:
mattherzog
2024-02-13 21:49:35 -08:00
committed by GitHub
parent d310075a3d
commit feecd83ce1
5 changed files with 11 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ export type AppConfig = {
description: string;
github_link?: string;
theme_color?: string;
video_fit?: "cover" | "contain";
outputs: {
audio: boolean;
video: boolean;
@@ -24,6 +25,7 @@ const defaultConfig: AppConfig = {
title: "Agents Playground",
description: "A playground for testing LiveKit Agents",
theme_color: "cyan",
video_fit: "cover",
outputs: {
audio: true,
video: true,