- Supported Bit Versions
- 32-bit
- 64-bit
- Source Code URL
- https://github.com/exeldro/obs-browser-transition
- Minimum OBS Studio Version
- 28.0.0
- Supported Platforms
- Windows
- macOS
- Linux
Plugin for OBS Studio to show a browser source during scene transition
backwards compatible way:
new way, OBS 30 and up, the event contains
backwards compatible way:
JavaScript:
window.addEventListener('obsSourceActiveChanged', function(event) {
if(event.detail.active){
//start transition
}else{
//end transition
}
})
transition, trackMatte, duration and transitionPoint:
JavaScript:
window.addEventListener('transitionStart', function(event) {
//start transition
});
window.addEventListener('transitionStop', function(event) {
//end transition
});