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.
The following plugins are required. Please download and install them before importing the scene.
| Plugin name | Link |
|---|---|
Stroke Glow Shadow | https://obsproject.com/forum/resources/stroke-glow-shadow.1800 |
Source copy | https://obsproject.com/forum/resources/source-copy.1261 |
Advanced Mask | https://obsproject.com/forum/resources/advanced-masks.1856 |
Crop / Pad | https://obsproject.com/kb/crop-pad-filter |
You will need the source copy plugin to import the OBS sources.
Once imported, place them in your break scene.
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.
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.
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;
}