me too :(Adding my name to the list. Was working fine before the 27.2.0 update. Now it's not working at all. Just getting a red border.
me too :(Adding my name to the list. Was working fine before the 27.2.0 update. Now it's not working at all. Just getting a red border.
ANyone has the ideia of what might be wrong? How can we help to solve it?Having this same issue. I had it working, then the update bricked it. My suggestion is to download an older version of OBS. I just tested 27.1.3 and it works for me!
Hope this helps!
I found this thread trying to figure out why my own BrowserSource overlays weren't working - and thought I would take a look at the code in this plugin.
It has the same issue I was having - this plugin uses BroadcastChannels to communicate between an OBS Dock and a BrowserSource on a scene, however OBS27.2 has changed the way it technically implements BrowserSource elements if you select "local file"
Docks are added (as I would expect) using the file:/// scheme - (eg file:///c:/obs/file.html)
In previous versions of OBS, BrowserSource local files were added the same way - nice feature, BroadcastChannel works to communicate between the two windows
In OBS 27.0 - BrowserSources set to Local File add the file using an absolute/ scheme (non-standard afaik) (eg absolute/c:/obs/file.html)
This breaks BroadcastChannels - as they only work using the same scheme and host.
FIX / TLDR:
Change your BrowserSource from a Local Source to a manually entered file:/// uri, changed all windows back slashes in the file path (\) to standard uri forward slashes (/), and replaced any spaces with the uri encoded %20 for good measure.
eg Local Source c:\obs project\file.html becomes standard url file:///c:/obs%20project/file.html
I found this thread trying to figure out why my own BrowserSource overlays weren't working - and thought I would take a look at the code in this plugin.
It has the same issue I was having - this plugin uses BroadcastChannels to communicate between an OBS Dock and a BrowserSource on a scene, however OBS27.2 has changed the way it technically implements BrowserSource elements if you select "local file"
Docks are added (as I would expect) using the file:/// scheme - (eg file:///c:/obs/file.html)
In previous versions of OBS, BrowserSource local files were added the same way - nice feature, BroadcastChannel works to communicate between the two windows
In OBS 27.0 - BrowserSources set to Local File add the file using an absolute/ scheme (non-standard afaik) (eg absolute/c:/obs/file.html)
This breaks BroadcastChannels - as they only work using the same scheme and host.
FIX / TLDR:
Change your BrowserSource from a Local Source to a manually entered file:/// uri, changed all windows back slashes in the file path (\) to standard uri forward slashes (/), and replaced any spaces with the uri encoded %20 for good measure.
eg Local Source c:\obs project\file.html becomes standard url file:///c:/obs%20project/file.html
I can confirm too this worked for meThanks for this I can also confirm it works.
Hi @NoeAL! Great extension. I just downloaded it but I am finding when I load an image into the logo, I am getting the broken image icon instead of the image. Am I missing something, is there a requirement for the image?
Many thanks!
Did the update break this? Doesn't seem to work anymore.
I found this thread trying to figure out why my own BrowserSource overlays weren't working - and thought I would take a look at the code in this plugin.
It has the same issue I was having - this plugin uses BroadcastChannels to communicate between an OBS Dock and a BrowserSource on a scene, however OBS27.2 has changed the way it technically implements BrowserSource elements if you select "local file"
Docks are added (as I would expect) using the file:/// scheme - (eg file:///c:/obs/file.html)
In previous versions of OBS, BrowserSource local files were added the same way - nice feature, BroadcastChannel works to communicate between the two windows
In OBS 27.0 - BrowserSources set to Local File add the file using an absolute/ scheme (non-standard afaik) (eg absolute/c:/obs/file.html)
This breaks BroadcastChannels - as they only work using the same scheme and host.
FIX / TLDR:
Change your BrowserSource from a Local Source to a manually entered file:/// uri, changed all windows back slashes in the file path (\) to standard uri forward slashes (/), and replaced any spaces with the uri encoded %20 for good measure.
eg Local Source c:\obs project\file.html becomes standard url file:///c:/obs%20project/file.html
I found this thread trying to figure out why my own BrowserSource overlays weren't working - and thought I would take a look at the code in this plugin.
It has the same issue I was having - this plugin uses BroadcastChannels to communicate between an OBS Dock and a BrowserSource on a scene, however OBS27.2 has changed the way it technically implements BrowserSource elements if you select "local file"
Docks are added (as I would expect) using the file:/// scheme - (eg file:///c:/obs/file.html)
In previous versions of OBS, BrowserSource local files were added the same way - nice feature, BroadcastChannel works to communicate between the two windows
In OBS 27.0 - BrowserSources set to Local File add the file using an absolute/ scheme (non-standard afaik) (eg absolute/c:/obs/file.html)
This breaks BroadcastChannels - as they only work using the same scheme and host.
FIX / TLDR:
Change your BrowserSource from a Local Source to a manually entered file:/// uri, changed all windows back slashes in the file path (\) to standard uri forward slashes (/), and replaced any spaces with the uri encoded %20 for good measure.
eg Local Source c:\obs project\file.html becomes standard url file:///c:/obs%20project/file.html
made account just to say tnx, this was driving me nuts