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. +`), + ], + }, +};