You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some friends were looking for a world with AVPro low latency to host a VR portal, so I tried adding a second AVPro module to my world's VizVid player that has low latency turned on so that players could select it from the dropdown when entering a url. However having two AVPro modules they seem to fight over which has control over the audio sources.
Could we either get a way for VizVid to switch the audio sources between different instances of AVPro depending on which is active. Or could we get some in-game toggle in the options menu to use low latency mode?
Side note: Is it possible to toggle "Is Low Latency" on the VizVid AVPro core at runtime? Could I just make and Udon script that toggles that?
The text was updated successfully, but these errors were encountered:
As all the player backends are all modularized, you can simply duplicate a AVPro Module and enable Low latency mode there (remember to add the cloned one to core alongside with the original one).
For audio sources, yes, it is needed to duplicate a new set of audio source and assign them to your new AVPro module, as one audio source can only attached to one AVPro player.
How would I connect them both to audiolink then? Is there an event or variable or something I can listen for in Udon so that I could write a script to re-assign the references based on what core is active?
No need to do that, this is where the purpose of "Main Audio Source" of each backend modules kick-in. What you need to do is use an existing audio source that assigned to the new module also configurated to output stereo audio, or duplicate one from AudioLink controller, assign it to plays audio from this video source, then assign it to "Main Audio Source" field. When user plays video/live stream with this module, the core will tell AudioLink to use that audio source automatically.
This is by designed, but sorry I didn't document it detailly.
Some friends were looking for a world with AVPro low latency to host a VR portal, so I tried adding a second AVPro module to my world's VizVid player that has low latency turned on so that players could select it from the dropdown when entering a url. However having two AVPro modules they seem to fight over which has control over the audio sources.
Could we either get a way for VizVid to switch the audio sources between different instances of AVPro depending on which is active. Or could we get some in-game toggle in the options menu to use low latency mode?
Side note: Is it possible to toggle "Is Low Latency" on the VizVid AVPro core at runtime? Could I just make and Udon script that toggles that?
The text was updated successfully, but these errors were encountered: