Way to change the "Read from file" text refresh rate of Text (GDI+) sources in the UI.

Anfunny

New Member
The default refresh rate is once per second. There should be a way in the UI to change the value of this as 1 second between refreshes is way too long for many circumstances.

I have done some initial digging/code changes and have found:
In the function "inline void TextSource::Tick(float seconds)" of of obs-text.cpp (https://github.com/obsproject/obs-s...38/plugins/obs-text/gdiplus/obs-text.cpp#L768), "1.0f" in "if (update_time_elapsed >= 1.0f)" is the time between each refresh of the text (in seconds).

Thanks in advance
 

dodgepong

Administrator
Community Helper
This has been discussed in the past and the conclusion was to leave it the way it is. If you need this, I recommend building the plugin yourself with the change, or investigate other ways to do what you're trying to do.
 
Top