Interface

Twitch Streamer Clips Autoplayer

Download
Documentation for Twitch Streamer Clips Autoplayer

Description

The automatic clip player is a widget that automatically retrieves the complete list of the broadcaster's clips and plays them one after another when a specific scene is active in OBS.


Installation and Configuration

Install OBS Plugins

The following plugins are required. Please download and install them before importing the scene.

Skipping this step will cause errors when importing the scene.

Import Sources into OBS

You will need the source copy plugin to import the OBS sources.

Once imported, place them in your break scene.

Import the actions into Streamer Bot.

Edit the Scene Changed trigger and enter the name of your break scene. That's all you need to do, everything is handled automatically in the C# sub-action.

You can create and use your own text and browser sources. Make sure to change the argument values in the sub-action if you don't reuse the same naming convention.

Known Issues and Solutions

Mature Clips

Mature clips are blocked by default by Twitch. You must interact with the browser source in OBS to enable mature clips when you encounter them. OBS will remember your choice for each streamer and will continue to play their clips after the first authorisation. A better solution is being researched.

Hide Twitch Player Overlay

Add the following CSS in the custom CSS field of the browser source:

body {
overflow: hidden;
}
.video-player__overlay,
.recommendations-carousel,
.clip-page__player-overlay {
display: none !important;
opacity: 0 !important;
pointer-events: none !important;
}