- 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
- Mac OS X
- Linux
Warning: This plugin is not official part of OBS, the part "obs-" in the repository name is only to keep the repositories organized, not to identify this plugin as part of OBS.
The name of the plugin, the module name and project name all don't contain OBS, but according to the OBS team that is not enough to comply with the Forum Resource and IP Policy. As a result of this, this plugin might get removed from the OBS resource pages in the future. So if you want to keep up to date with updates of the plugin follow on GitHub, Twitter or Bluesky.
Plugin for OBS Studio to show a browser source during scene transition
backwards compatible way:
new way, OBS 30 and up, the event contains
The name of the plugin, the module name and project name all don't contain OBS, but according to the OBS team that is not enough to comply with the Forum Resource and IP Policy. As a result of this, this plugin might get removed from the OBS resource pages in the future. So if you want to keep up to date with updates of the plugin follow on GitHub, Twitter or Bluesky.
Plugin for OBS Studio to show a browser source during scene transition
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
});