I spent a lot of time trying to figure out how I could realize what I had planned and figured out the following:
When the world is launched, VoiceEngine is created, which in turn triggers a function in VoiceModule that creates VoiceCapture (each platform has its own implementation).
Is it possible to get a reference to VoiceCapture from outside? I looked in the sources and found a function in VoiceCapture to change the device of audio capture
i’m not sure. but seems difficult task.
i would reconsider if there’s no other way. or keep looking at the source.
FVoiceEngineImpl seems to have a ref to it. each platform implemetns its own version.
the ref seems to be private (the default one).
it has a GetVoiceCapture but it’s protected (why, beats me). virtual TSharedPtr<IVoiceCapture>& GetVoiceCapture() { return VoiceCapture; }
some alternatives each with its own problems:
move that line for the function declaration to public and be done. if you can modify the engine code.
implement a child class of the platform you need and then add a function. (for example a child of FVoiceEngineSteam (this probably you’ll have to copy since its not exposed) and FOnlineVoiceSteam. (this is a mess of an option).