An automation tool for OBS Studio
Go to file
WarmUpTill aca9b84fc6
Fix rapid scene switch restarting certain transitions (#313)
When using certain transition types repeated scene switches to the same target scene will restart a transition that is already in progress.
This can be avoided by using obs_frontend_get_current_scene() instead of switcher->currentScene during the check if the target scene is already active.
obs_frontend_get_current_scene() will already point to the new scene, even if the transition is still in progess, while switcher->currentScene will only be updated once a transition is finished.
2021-09-26 14:04:01 +02:00
.github/workflows Add "apt update" calls 2021-09-18 10:21:35 -07:00
CI Fix some mistakes in debian CI test 2021-09-13 10:58:39 -07:00
cmake Add version info log (#61) 2020-11-15 20:34:11 +01:00
data Add transition action 2021-09-19 05:15:49 -07:00
deps Resolve asio network crashes on macOS (#157) 2021-04-03 22:02:42 +02:00
forms Add note to network tab 2021-07-24 23:31:35 -07:00
src Fix rapid scene switch restarting certain transitions (#313) 2021-09-26 14:04:01 +02:00
.clang-format Add .clang-format and apply to src/ files 2020-06-08 14:58:44 -04:00
.gitignore .gitignore: Let's start by adding a normal set of ignores. 2018-12-27 01:14:37 -06:00
.gitmodules Add network tab (#149) 2021-03-24 20:51:22 +01:00
BUILDING.md Add libxss-dev dependency 2021-09-12 11:09:00 -07:00
CMakeLists.txt Add transition action 2021-09-19 05:15:49 -07:00
LICENSE Added GPL2 2017-06-02 15:23:52 +02:00
README.md Fix typo 2021-08-19 12:56:34 -07:00

SceneSwitcher

An automated scene switcher for OBS Studio.

More information can be found on https://obsproject.com/forum/resources/automatic-scene-switching.395/.

Downloads

Binaries for Windows, MacOS, and Linux are available in the Releases section.

Installing the plugin

For the Windows and MacOS platforms, it is recommended to run the provided installers.

For Linux the Snap package manager offers an OBS Studio installation which is bundled with the plugin:

sudo snap install obs-studio

If that is not an option you will have to ...

  1. Copy the library to the plugins folder of you obs installation.
  2. Copy the contents of the data directory to its respective folders of your obs installation.

Unfortunately the exact location of these folders may vary from system to system.

Compiling the plugin

See the build instructions.