From 57f25d2925da361df7cd5c6aac9eb11b48ac2a5c Mon Sep 17 00:00:00 2001 From: Perry Date: Tue, 14 Jan 2025 01:31:32 +0100 Subject: [PATCH] Create overlay-issues.ts Adding instructions for how to try to fix issues with videos and audio in overlay. --- .../handlers/info/topics/overlay-issues.ts | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/interactions/commands/handlers/info/topics/overlay-issues.ts diff --git a/src/interactions/commands/handlers/info/topics/overlay-issues.ts b/src/interactions/commands/handlers/info/topics/overlay-issues.ts new file mode 100644 index 0000000..483ba12 --- /dev/null +++ b/src/interactions/commands/handlers/info/topics/overlay-issues.ts @@ -0,0 +1,21 @@ +import { getBaseEmbed, InfoTopic } from '../info-helpers'; + +export const overlayIssues: InfoTopic = { + name: 'Overlay Issues', + message: { + embeds: [ + getBaseEmbed().setTitle('Video Issues in Overlay').setDescription(` +If you're experiencing issues with videos and audio in your Firebot Overlay, follow these steps to disable Hardware Acceleration: + +1. In **OBS Studio** click on File. + - Click on Settings. + - Click on Advanced. + - Scroll down to the bottom; Sources. + - Disable "Enable Browser Source Hardware Acceleration" + - Check results in OBS after restarting OBS. + +If this for some reason doesn't help, you might need to check the encoding of your video-file. +`), + ], + }, +};