diff --git a/src/index.ts b/src/index.ts index c328b56..ca9e300 100644 --- a/src/index.ts +++ b/src/index.ts @@ -46,6 +46,15 @@ async function main(): Promise { logger.warn({ path: config.YTDLP_COOKIES }, "cookie file from YTDLP_COOKIES does not exist"); } + if (config.VIDEO_ENABLED) { + logger.info( + { size: `${config.VIDEO_WIDTH}x${config.VIDEO_HEIGHT}`, fps: config.VIDEO_FPS }, + "video enabled — YouTube clips will be published as a screen share", + ); + } else { + logger.info("video disabled — set VIDEO_ENABLED=true to publish clips as a screen share"); + } + const manager = new MusicManager(); const bot = await startBot(manager); const app = await startApiServer({ manager, context: bot.context });