From c31552dd8382c0b1f7985e0f493d11e4ac8c16f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Le=20Calvar?= Date: Sat, 13 May 2023 13:51:55 +0200 Subject: [PATCH] minor fixes in settings descriptions --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 54d7fdc..9af8bc0 100644 --- a/src/main.ts +++ b/src/main.ts @@ -93,7 +93,7 @@ export async function register(options :RegisterServerOptions) { type: 'html', html: '', - descriptionHTML: `The base bitrate for video. This is the bitrate used when the video is transcoded at 30 FPS. The bitrate will be scaled linearly between this value and the maximum bitrate when the video is transcoded at 60 FPS.`, + descriptionHTML: `The base bitrate for video in bits. This is the bitrate used when the video is transcoded at 30 FPS. The bitrate will be scaled linearly between this value and the maximum bitrate when the video is transcoded at 60 FPS.`, private: true, }) @@ -136,7 +136,7 @@ export async function unregister() { function printResolution(resolution : VideoResolution) : string { switch (resolution) { - case VideoResolution.H_NOVIDEO: return 'Audio only' + case VideoResolution.H_NOVIDEO: return 'audio only' case VideoResolution.H_144P: case VideoResolution.H_360P: case VideoResolution.H_480P: