Fix codec and usability of custom tab (#146)

This commit is contained in:
David Zhao 2023-10-26 11:07:59 -07:00 committed by GitHub
parent 1fecc00332
commit e9f89d3cd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View file

@ -5,6 +5,7 @@ import {
Room, Room,
RoomConnectOptions, RoomConnectOptions,
RoomOptions, RoomOptions,
VideoCodec,
VideoPresets, VideoPresets,
} from 'livekit-client'; } from 'livekit-client';
import { useRouter } from 'next/router'; import { useRouter } from 'next/router';
@ -14,7 +15,7 @@ import { DebugMode } from '../../lib/Debug';
export default function CustomRoomConnection() { export default function CustomRoomConnection() {
const router = useRouter(); const router = useRouter();
const { liveKitUrl, token } = router.query; const { liveKitUrl, token, codec } = router.query;
const e2eePassphrase = const e2eePassphrase =
typeof window !== 'undefined' && decodePassphrase(window.location.hash.substring(1)); typeof window !== 'undefined' && decodePassphrase(window.location.hash.substring(1));
@ -30,7 +31,7 @@ export default function CustomRoomConnection() {
publishDefaults: { publishDefaults: {
videoSimulcastLayers: [VideoPresets.h540, VideoPresets.h216], videoSimulcastLayers: [VideoPresets.h540, VideoPresets.h216],
red: !e2eeEnabled, red: !e2eeEnabled,
videoCodec: 'vp9', videoCodec: codec as VideoCodec | undefined,
}, },
adaptiveStream: { pixelDensity: 'screen' }, adaptiveStream: { pixelDensity: 'screen' },
dynacast: true, dynacast: true,

View file

@ -1,8 +1,8 @@
import type { GetServerSideProps, InferGetServerSidePropsType } from 'next'; import type { GetServerSideProps, InferGetServerSidePropsType } from 'next';
import { useRouter } from 'next/router'; import { useRouter } from 'next/router';
import React, { ReactElement, useState } from 'react'; import React, { ReactElement, useState } from 'react';
import styles from '../styles/Home.module.css';
import { encodePassphrase, generateRoomId, randomString } from '../lib/client-utils'; import { encodePassphrase, generateRoomId, randomString } from '../lib/client-utils';
import styles from '../styles/Home.module.css';
interface TabsProps { interface TabsProps {
children: ReactElement[]; children: ReactElement[];
@ -88,7 +88,7 @@ function CustomConnectionTab({ label }: { label: string }) {
name="token" name="token"
placeholder="Token" placeholder="Token"
required required
rows={9} rows={5}
style={{ padding: '1px 2px', fontSize: 'inherit', lineHeight: 'inherit' }} style={{ padding: '1px 2px', fontSize: 'inherit', lineHeight: 'inherit' }}
/> />
<div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}> <div style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>

View file

@ -5,6 +5,7 @@
place-content: center; place-content: center;
justify-items: center; justify-items: center;
padding-bottom: 100px; padding-bottom: 100px;
overflow: auto;
} }
.tabContainer { .tabContainer {