1dab263403
Allows using a video file as a means of transitioning, transitioning two targets at a specific time during the video playback. Audio for target A fades out to the transition point, and then audio for target B fades in after the transition point.
20 lines
391 B
CMake
20 lines
391 B
CMake
project(obs-transitions)
|
|
|
|
set(obs-transitions_SOURCES
|
|
obs-transitions.c
|
|
transition-slide.c
|
|
transition-swipe.c
|
|
transition-fade.c
|
|
transition-cut.c
|
|
transition-fade-to-color.c
|
|
transition-luma-wipe.c
|
|
transition-stinger.c
|
|
)
|
|
|
|
add_library(obs-transitions MODULE
|
|
${obs-transitions_SOURCES})
|
|
target_link_libraries(obs-transitions
|
|
libobs)
|
|
|
|
install_obs_plugin_with_data(obs-transitions data)
|