Resource icon

Free Animated Lower Thirds with Dockable Control Panel v.1.6

ncognito66

New Member
Excuse me if I missed this somewhere. I'm running 27.1.3 and moving to a new computer, and it wouldn't import my .json file. I moved everything manually, but the text is missing from all of the LT boxes. Where is the text stored please?
 

novafirst

New Member
On high resolution system (3200x1800) the panel is so small that I can't read or select anything.
 

Attachments

  • Screenshot from 2022-02-14 22-17-29.png
    Screenshot from 2022-02-14 22-17-29.png
    264.9 KB · Views: 50

novafirst

New Member
The problem is the hardware acceleration of the browser, uncheck the settings of obs, advanced, source.
Some browsers will work, others will not, apparently in the case of the LT, it is not working
Sorry for my english
I don't even have that option in OBS running on Linux
 

Xexéo

New Member
Hi,
I am using OBS 27.2.0 and Animated Lower Thirds in Windows 10, and I can´t make it work: there is a a red border on the lower thirds.


Checked texts (both are filled) and times (2 first filled, last empty in General Config).
Image 4.png


Looking at many videos, the counting that happens in the two small boxes between the slots and the lightning does not start.

Any hints?
 

Althegamr

New Member
Hi,
I am using OBS 27.2.0 and Animated Lower Thirds in Windows 10, and I can´t make it work: there is a a red border on the lower thirds.


Checked texts (both are filled) and times (2 first filled, last empty in General Config).View attachment 80389

Looking at many videos, the counting that happens in the two small boxes between the slots and the lightning does not start.

Any hints?


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!
 

MrJaums

New Member
Hi,
I am using OBS 27.2.0 and Animated Lower Thirds in Windows 10, and I can´t make it work: there is a a red border on the lower thirds.


Checked texts (both are filled) and times (2 first filled, last empty in General Config).View attachment 80389

Looking at many videos, the counting that happens in the two small boxes between the slots and the lightning does not start.

Any hints?
I'm dealing with the same thing. I have MAC. It worked for me two weeks ago, and when I went to use it today it don't work... Red box on Lower Third 1 with Main Settings Blue...I even tried the Uncheck acceleration that everyone said to do...
No Dice.
 

MMLTech

Member
You can use the Animated Name Plates from this project https://obsproject.com/forum/thread...tube-live-counters-likes-dislikes-com.151459/ until the lower thirds are fixed, StreamCD works as browser source but there's only one animation for now.

View attachment 80456

thank you formentioning, I confirm that it does pretty much the same thing and you don’t have to download anything because it works as browser source, hence why it works in the newer OBS version
 

WoodcraftByOwen

New Member
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
 
Top