obs-studio plugin for source item animation
Motion-effect is an obs-studio plugin for source item animation by updating transform settings.
See Release Page
First follow build procedures for obs-studio.
Building obs-studio will produce an
obs.libfile, generated inside the build directories - e.g.
obs-studio/build/libobs/debug/obs.lib
Assuming you have cmake, prior to first configure, add the following entries:
| Entry name | Type | Value (e.g.) | |--------------------|----------|------------------------------------------------------| | LIBOBSLIB | FILEPATH | /obs-studio/path/to/obs.lib | | LIBOBSINCLUDEDIR | PATH | /obs-studio/libobs | | OBSFRONTEND_LIB | FILEPATH | /obs-studio/UI/obs-frontend-api/obs-frontend-api.lib |
This should produce the desired development environment, which after building, shall produce the plugin dll file.
You have to download obs-studio source code first and make sure you have installed cmake.
git clone https://github.com/CatxFish/motion-filter.git cd motion-filter mkdir build && cd build cmake -DLIBOBS_INCLUDE_DIR="" -DCMAKE_INSTALL_PREFIX=/usr .. make -j4 sudo make install