Question / Help faster slide show?

joe7dust

Member
Is there a config file I could edit to get faster than 1 time per 5 seconds? This artificial limitation sees pointless to me. If the software can stream 1080p at 60fps surely it can handle a fast slide show animation.
 

micechal

Member
Just a quick guess would be to see it in the scenes.xconfig file which keeps your scenes and sources properties. I'm not sure though because I'm on a phone right now so I can't check.
 

NoSFeRaTU

New Member
micechal said:
Just a quick guess would be to see it in the scenes.xconfig file which keeps your scenes and sources properties. I'm not sure though because I'm on a phone right now so I can't check.
Editing xconfig file won't work because:
Code:
Source/BitmapTransitionSource.cpp:196:

        if(transitionTime < 5)
            transitionTime = 5;
        else if(transitionTime > 30)
            transitionTime = 30;

It can be lowered to 2 seconds with no issues with current code tho (2s due to 1.5s fader time).

joe7dust, if you want you can try this patch (or compiled binary). With this patch:
  1. 1. transition time can be changed in range 1-120s
    2. fader time can be changed in range 100ms-3s
    3. fader can be disabled completely
 

joe7dust

Member
There is a streamer girl named Koshka who has a really fast animating overlay. Could this be an animating .GIF she is using or does that even work? Neato on the patch thing I will check it out sometime.
 
Top